Skip to content

Commit

Permalink
Lint Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
vinaykulk621 committed Sep 26, 2023
1 parent c732499 commit 46ba6f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion examples/with-grafbase/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Link from 'next/link'

import { graphql } from '../gql'
import { grafbase } from '../lib/grafbase'
import type { Metadata } from "next"
import type { Metadata } from 'next'

export const revalidate = 0

Expand Down
2 changes: 1 addition & 1 deletion examples/with-grafbase/app/posts/[slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const GetPostBySlugDocument = graphql(/* GraphQL */ `
}
`)

export default async function Page({ params }: { params: { slug: string } }){
export default async function Page({ params }: { params: { slug: string } }) {
const { post } = await grafbase.request(GetPostBySlugDocument, {
slug: params.slug,
})
Expand Down

0 comments on commit 46ba6f3

Please sign in to comment.