Skip to content

Commit

Permalink
fix(prismic): move contact route below catchall
Browse files Browse the repository at this point in the history
  • Loading branch information
charles4221 committed Jan 31, 2024
1 parent 18cd135 commit 660c411
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/prismic-config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,6 @@ const routes: ClientConfig['routes'] = [
type: 'about',
path: '/about',
},
{
type: 'page',
uid: 'contact',
path: '/contact',
},
{
type: 'page',
path: '/:uid',
Expand All @@ -32,6 +27,11 @@ const routes: ClientConfig['routes'] = [
uid: 'home',
path: '/',
},
{
type: 'page',
uid: 'contact',
path: '/contact',
},
{
type: 'settings',
path: '/',
Expand Down

0 comments on commit 660c411

Please sign in to comment.