Skip to content

Commit

Permalink
feat: order imports
Browse files Browse the repository at this point in the history
  • Loading branch information
g-saracca committed Sep 9, 2024
1 parent 24a6b6b commit 772bf41
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/router/ProtectedRoute.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { BASE_URL } from '../config'
import { Outlet } from 'react-router-dom'
import { Route } from '../sections/Route.enum'
import { useSession } from '../sections/session/SessionContext'
import { Outlet } from 'react-router-dom'
import { AppLoader } from '../sections/shared/layout/app-loader/AppLoader'
import { BASE_URL } from '../config'

export const ProtectedRoute = () => {
const { user, isLoadingUser } = useSession()
Expand Down

0 comments on commit 772bf41

Please sign in to comment.