Skip to content

Commit

Permalink
unused vars
Browse files Browse the repository at this point in the history
  • Loading branch information
dylanireland committed May 1, 2024
1 parent 5b1cfc2 commit 6624ca7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -41,10 +41,10 @@ const App = () => {
clickRef?.on('csprclick:switched_account', (evt: any) => {
setActiveAccount(evt.account);
});
clickRef?.on('csprclick:signed_out', (evt: any) => {
clickRef?.on('csprclick:signed_out', () => {
setActiveAccount(null);
});
clickRef?.on('csprclick:disconnected', (evt: any) => {
clickRef?.on('csprclick:disconnected', () => {
setActiveAccount(null);
});
}, [clickRef?.on]);
Expand Down

0 comments on commit 6624ca7

Please sign in to comment.