From 9b31fafcad45480c800c3abf79faa53a4af2b222 Mon Sep 17 00:00:00 2001 From: mauro-balades Date: Tue, 27 Aug 2024 16:02:37 +0200 Subject: [PATCH] feat: Add client-side code for privacy policy page --- src/app/privacy-policy/page.tsx | 1 + src/lib/release-notes.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/src/app/privacy-policy/page.tsx b/src/app/privacy-policy/page.tsx index 5408dea..32236a3 100644 --- a/src/app/privacy-policy/page.tsx +++ b/src/app/privacy-policy/page.tsx @@ -1,3 +1,4 @@ +"use client"; import Footer from "@/components/footer"; import { Navigation } from "@/components/navigation"; import { releaseNoteIsAlpha, releaseNotes } from "@/lib/release-notes"; diff --git a/src/lib/release-notes.ts b/src/lib/release-notes.ts index 537fe57..723a217 100644 --- a/src/lib/release-notes.ts +++ b/src/lib/release-notes.ts @@ -1,3 +1,4 @@ +"use client"; interface Fix { description: string;