Skip to content

Commit

Permalink
homeview edge case
Browse files Browse the repository at this point in the history
  • Loading branch information
gkartalis committed Oct 29, 2024
1 parent f9dde40 commit 56c7aeb
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/app/Scenes/Home/HomeContainer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import { GlobalStore } from "app/store/GlobalStore"
import { navigate } from "app/system/navigation/navigate"
import { useDevToggle } from "app/utils/hooks/useDevToggle"
import { useFeatureFlag } from "app/utils/hooks/useFeatureFlag"
import { useSwitchStatusBarStyle } from "app/utils/useStatusBarStyle"
import { useEffect } from "react"

export const InnerHomeContainer = () => {
Expand All @@ -22,6 +23,8 @@ export const InnerHomeContainer = () => {
await navigate("/art-quiz")
}

useSwitchStatusBarStyle("light-content", "dark-content")

useEffect(() => {
if (artQuizState === "incomplete" && isNavigationReady) {
navigateToArtQuiz()
Expand Down

0 comments on commit 56c7aeb

Please sign in to comment.