Skip to content

Commit cd0e5e0

Browse files
committed
Fixes
1 parent b1eb9b6 commit cd0e5e0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/App.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ const App: FC = () => {
4444
<NavigationContainer ref={navigationRef}>
4545
<NativeBaseProvider theme={customTheme}>
4646
<QueryClientProvider client={queryClient}>
47-
<StatusBar barStyle="dark-content" backgroundColor="WHITE" />
47+
<StatusBar barStyle="dark-content" />
4848

4949
<RootStackScreen />
5050
</QueryClientProvider>

src/components/AppVersion/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ const EnvInfoView: FC = () => {
77
return (
88
<Flex marginTop={5}>
99
{/* This is just to show you how to get values from the generated ENV file */}
10-
<Text fontSize="2xs" textAlign="center" paddingY="5px" color="ABSESTOS">{`ENV: ${env.ENV}`}</Text>
10+
<Text fontSize="2xs" textAlign="center" paddingY="5px" color="ASBESTOS">{`ENV: ${env.ENV}`}</Text>
1111

1212
<Text
1313
fontSize="2xs"
1414
textAlign="center"
15-
color="ABSESTOS"
15+
color="ASBESTOS"
1616
>{`v.${VersionNumber.appVersion}-${VersionNumber.buildVersion}`}</Text>
1717
</Flex>
1818
);

0 commit comments

Comments
 (0)