Skip to content

Commit

Permalink
Resolve lint issues (#146)
Browse files Browse the repository at this point in the history
  • Loading branch information
AdamDotCom authored Aug 25, 2022
1 parent 86e0c29 commit 245dcc8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/address-bar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export class AddressBar extends React.Component<Properties, State> {
return <span className='address-bar__route'>{this.renderSegments()}</span>;
}

showAddressBarMode = (value) => (e) => {
showAddressBarMode = (value) => (_event) => {
this.setState({ mode: value });
};

Expand Down
2 changes: 1 addition & 1 deletion src/zns-route-connect.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export interface Properties {
}

export class Container extends React.Component<Properties> {
static mapState(state: RootState): Partial<Properties> {
static mapState(_state: RootState): Partial<Properties> {
return {};
}

Expand Down

0 comments on commit 245dcc8

Please sign in to comment.