Skip to content

Commit

Permalink
fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
mmrrnn committed Aug 29, 2024
1 parent 6a90180 commit eeabd86
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ function App() {
const showSplash = useUIStore((s) => s.showSplash);

useEffect(() => {
setupLogger()
}, [])
setupLogger();
}, []);

return (
<StrictMode>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/logger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const parseArgument = (a: any) => {
} catch (e) {

Check warning on line 11 in src/utils/logger.ts

View workflow job for this annotation

GitHub Actions / Run linters

'e' is defined but never used
return String(a);
}
}
};

export const setupLogger = () => {
// Override console.log
Expand Down

0 comments on commit eeabd86

Please sign in to comment.