We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 69c2c09 commit 4d2d9b4Copy full SHA for 4d2d9b4
src/components/ui/focus-aware-status-bar.tsx
@@ -13,5 +13,10 @@ export const FocusAwareStatusBar = ({ hidden = false }: Props) => {
13
return null;
14
}
15
16
- return isFocused ? <SystemBars style={colorScheme} hidden={hidden} /> : null;
+ return isFocused ? (
17
+ <SystemBars
18
+ style={colorScheme === 'light' ? 'dark' : 'light'}
19
+ hidden={hidden}
20
+ />
21
+ ) : null;
22
};
0 commit comments