Skip to content

Commit

Permalink
fix lint errors in Memory Browser
Browse files Browse the repository at this point in the history
  • Loading branch information
jreineckearm committed Jan 15, 2025
1 parent 29a92de commit a17dd05
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/memory/client/MemoryBrowser.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export class MemoryBrowser extends React.Component<Props, State> {
private addressReq = '';
private lengthReq = '512';
private childReq = 0;
public static firstTime: boolean = true;
public static firstTime = true;

constructor(props: Props) {
super(props);
Expand Down Expand Up @@ -356,7 +356,7 @@ export class MemoryBrowser extends React.Component<Props, State> {
MemoryBrowser.firstTime = false;
}
const { childrenNames } = this.state;
let childrenNamesList =
const childrenNamesList =
childrenNames.length > 0 &&
childrenNames.map((item, i) => {
return (
Expand Down

0 comments on commit a17dd05

Please sign in to comment.