Skip to content

Commit

Permalink
chore: schema/seed
Browse files Browse the repository at this point in the history
remove /
add type
  • Loading branch information
seaerchin committed Jun 26, 2024
1 parent 7a1a9f1 commit 83abfb4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/studio/prisma/schema.prisma
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// This is your Prisma schema file,/
// This is your Prisma schema file,
// learn more about it in the docs: https://pris.ly/d/prisma-schema

datasource db {
Expand Down
3 changes: 1 addition & 2 deletions apps/studio/prisma/seed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@
*
* @link https://www.prisma.io/docs/guides/database/seed-database
*/
import { type IsomerSitemap } from '@opengovsg/isomer-components'
import { type SiteConfig } from '~/server/modules/site/site.types'
import {
type Navbar,
type Footer,
} from '~/server/modules/resource/resource.types'
import { db } from '../src/server/modules/database'

const NAV_BAR_ITEMS = [
const NAV_BAR_ITEMS: Navbar['items'] = [
{
name: 'Expandable nav item',
url: '/item-one',
Expand Down

0 comments on commit 83abfb4

Please sign in to comment.