Skip to content

Commit

Permalink
Merge branch 'main' into ahmedeldessouki
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobMGEvans authored Feb 3, 2021
2 parents 430711c + 22e691e commit e4044ed
Show file tree
Hide file tree
Showing 8 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@
"path": "firestore_export",
"metadata_file": "firestore_export/firestore_export.overall_export_metadata"
}
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"scripts": {
"start": "run-p start:firestore start:dev",
"start:dev": "snowpack dev",
"start:firestore": "firebase emulators:start --import=./dev-data --only firestore",
"start:firestore": "firebase emulators:start --import=./devData --only firestore",
"build": "snowpack build",
"test": "jest --watch --FIRESTORE_EMULATOR_HOST=8080",
"test:ci": "jest",
Expand Down
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import Home from './routes/Home'
import NotFound from './routes/NotFound'
import { globalStyles } from './styles/globalStyles'

const AllRaids = React.lazy(() => import('./routes/AllRaids'))
const ViewRaid = React.lazy(() => import('./routes/ViewRaid'))
const AllRaids = React.lazy(() => import('./routes/raids'))
const ViewRaid = React.lazy(() => import('./routes/raids/ViewRaid'))

const AppRouter = () => (
<React.Suspense fallback={<LoadingSpinner />}>
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit e4044ed

Please sign in to comment.