Location Edit / Add / Delete migrated to client-side rendering
This commit is contained in:
@@ -1,5 +1,11 @@
|
||||
import LocationEditPage from './LocationEditPage';
|
||||
import { Main } from '@/app/ui/Main';
|
||||
import dynamic from 'next/dynamic'
|
||||
|
||||
const LocationEditPage = dynamic(
|
||||
() => import('./LocationEditPage'),
|
||||
{ ssr: false }
|
||||
)
|
||||
|
||||
|
||||
export default async function Page({ params:{ id } }: { params: { id:string } }) {
|
||||
|
||||
|
||||
Reference in New Issue
Block a user