Skip to content

Commit

Permalink
fix: lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
chrispader committed Nov 30, 2023
1 parent 3b0ebeb commit f7df8ad
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/CustomStatusBar/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ const CustomStatusBar: CustomStatusBarType = ({isNested = false}) => {
useEffect(() => {
navigationRef.addListener('state', updateStatusBarStyle);

return () => navigationRef.removeListener('state', navigationStateListener);
return () => navigationRef.removeListener('state', updateStatusBarStyle);
}, [updateStatusBarStyle]);

useEffect(() => {
Expand Down
2 changes: 1 addition & 1 deletion src/styles/themes/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {ColorScheme, StatusBarStyle} from '@styles/styles';
import {type ColorScheme, type StatusBarStyle} from '@styles/styles';
import CONST from '@src/CONST';

type Color = string;
Expand Down

0 comments on commit f7df8ad

Please sign in to comment.