Skip to content

Commit

Permalink
fixes after merge
Browse files Browse the repository at this point in the history
  • Loading branch information
g-saracca committed Sep 19, 2024
1 parent 624344a commit 4b00457
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/router/routes.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ import { EditDatasetMetadataFactory } from '../sections/edit-dataset-metadata/Ed
import { CreateCollectionFactory } from '../sections/create-collection/CreateCollectionFactory'
import { AccountFactory } from '../sections/account/AccountFactory'
import { ProtectedRoute } from './ProtectedRoute'
import { HomepageFactory } from '../sections/homepage/HomepageFactory'

export const routes: RouteObject[] = [
{
Expand All @@ -20,7 +21,7 @@ export const routes: RouteObject[] = [
children: [
{
path: Route.HOME,
element: CollectionFactory.create()
element: HomepageFactory.create()
},
{
path: Route.COLLECTIONS_BASE,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
.app-loader {
display: grid;
place-content: center;
min-height: $body-available-height;
min-height: $main-container-available-height;
}

0 comments on commit 4b00457

Please sign in to comment.