From 68f17b81ac7dcccd256aae57bbd16ac84d9f9231 Mon Sep 17 00:00:00 2001 From: Erol Date: Sun, 12 Apr 2026 21:11:55 +0200 Subject: [PATCH] =?UTF-8?q?Etter=20=C3=A5=20ha=20lagt=20til=20medlemskap?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/app/sted/[slug]/page.tsx | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/frontend/src/app/sted/[slug]/page.tsx b/frontend/src/app/sted/[slug]/page.tsx index 577b29e..2f17577 100755 --- a/frontend/src/app/sted/[slug]/page.tsx +++ b/frontend/src/app/sted/[slug]/page.tsx @@ -1,6 +1,6 @@ -import dynamicImport from "next/dynamic"; import { notFound } from "next/navigation"; import FacilitySearch from "@/app/FacilitySearch"; +import PlaceMap from "@/components/PlaceMap"; import { type FacilityRecord, enrichFacilities, @@ -10,15 +10,6 @@ import { } from "@/app/facilityData"; import { API_URL } from "@/config/constants"; -const PlaceMap = dynamicImport(() => import("@/components/PlaceMap"), { - ssr: false, - loading: () => ( -
-

Laster kartet...

-
- ), -}); - export const dynamicParams = true; export const dynamic = "force-dynamic";