Skip to content

Commit

Permalink
fix bb
Browse files Browse the repository at this point in the history
  • Loading branch information
viet nguyen committed Jan 23, 2024
1 parent ef8571d commit 38a4c37
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/app/(default)/edit/page.tsx
Original file line number Diff line number Diff line change
@@ -1,13 +1,16 @@
import { getChangeHistoryServerSide } from '../../js/graphql/contribAPI'
import RecentChangeHistory from '@/components/edit/RecentChangeHistory'
import { ReactElement } from 'react'
import { Metadata } from 'next'

import { getChangeHistoryServerSide } from '@/js/graphql/contribAPI'
import RecentChangeHistory from '@/components/edit/RecentChangeHistory'

export const metadata: Metadata = {
title: 'Contribute to OpenBeta',
description: 'Share your climbing adventure photos and contribute to the climbing route catalog.'
}

export const revalidate = 3600

export default async function Page (): Promise<ReactElement> {
const history = await getChangeHistoryServerSide()
return (
Expand Down
File renamed without changes.

0 comments on commit 38a4c37

Please sign in to comment.