From faf6c048c10966a5fbe13bc5b784a622b48cbf49 Mon Sep 17 00:00:00 2001 From: Marc Glasser Date: Wed, 8 May 2024 13:56:42 -1000 Subject: [PATCH] Fix typo --- .../CustomStatusBarAndBackgroundContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/CustomStatusBarAndBackground/CustomStatusBarAndBackgroundContext.tsx b/src/components/CustomStatusBarAndBackground/CustomStatusBarAndBackgroundContext.tsx index 58a116789bbe..b82fd55dc038 100644 --- a/src/components/CustomStatusBarAndBackground/CustomStatusBarAndBackgroundContext.tsx +++ b/src/components/CustomStatusBarAndBackground/CustomStatusBarAndBackgroundContext.tsx @@ -5,7 +5,7 @@ type CustomStatusBarAndBackgroundContextType = { setRootStatusBarEnabled: (isEnabled: boolean) => void; }; -// Signin page has its seperate Statusbar and ThemeProvider, so when user is on the SignInPage we need to disable the root statusbar so there is no double status bar in component stack, first in Root and other in SignInPage +// Signin page has its separate Statusbar and ThemeProvider, so when user is on the SignInPage we need to disable the root statusbar so there is no double status bar in component stack, first in Root and other in SignInPage const CustomStatusBarAndBackgroundContext = createContext({isRootStatusBarEnabled: true, setRootStatusBarEnabled: () => undefined}); export default CustomStatusBarAndBackgroundContext;