Skip to content

Commit eb8dee2

Browse files
committed
Fix lint errors
1 parent 978bfe1 commit eb8dee2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

packages/simpleserialize.com/src/components/Output.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ export default class Output<T> extends React.Component<Props<T>, State> {
6161
const {error, serialized, deserialized, hashTreeRoot, serializeModeOn, sszType} = this.props;
6262
const {showError, outputType} = this.state;
6363

64-
let serializedStr: string = "";
65-
let hashTreeRootStr: string = "";
64+
let serializedStr = "";
65+
let hashTreeRootStr = "";
6666
let deserializedStr = "";
6767
if (serializeModeOn) {
6868
const serializedOutput = serializeOutputTypes[outputType];

packages/simpleserialize.com/src/components/Serialize.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export default class Serialize extends React.Component<Props, State> {
6262
}
6363

6464
async process(forkName: ForkName, name: string, input: unknown, type: Type<unknown>): Promise<void> {
65-
let error: string = "";
65+
let error = "";
6666
if (this.props.serializeModeOn) {
6767
this.setOverlay(true, "Serializing...");
6868
this.serializationWorkerThread

0 commit comments

Comments
 (0)