Skip to content

Commit

Permalink
fix: revert mobile App.svelte import order changes (#5950)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeeanribeiro committed Feb 22, 2023
1 parent 9341bcc commit 485509e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/mobile/App.svelte
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<script lang="ts">
import { onMount } from 'svelte'
import { ToastContainer } from './components'
import { DashboardView, LoginRouter, OnboardingRouter } from './views'
import { localeDirection, setupI18n, _ } from '@core/i18n'
import { checkAndMigrateProfiles, cleanupEmptyProfiles } from '@core/profile'
import { initialiseRouterManager, RouterManagerExtensionName } from '@core/router'
Expand All @@ -16,6 +14,7 @@
shouldBeDarkMode,
} from '@core/app'
import { onboardingProfile } from '@contexts/onboarding'
import { ToastContainer } from './components'
import { isKeyboardOpen, keyboardHeight } from './lib/auxiliary/keyboard'
import {
appRoute,
Expand All @@ -27,6 +26,7 @@
resetRouterForAppContext,
resetRouters,
} from './lib/routers'
import { DashboardView, LoginRouter, OnboardingRouter } from './views'
appStage.set(AppStage[process.env.STAGE.toUpperCase()] ?? AppStage.ALPHA)
Expand Down

0 comments on commit 485509e

Please sign in to comment.