From 628ddc8eb27df8d2166766570b9ec30c75800d43 Mon Sep 17 00:00:00 2001 From: Manuel Bustillo Date: Sun, 18 Aug 2024 19:18:00 +0200 Subject: [PATCH] Define table as a client component --- app/ui/guests/table.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/ui/guests/table.tsx b/app/ui/guests/table.tsx index 6458d55..d7a71ae 100644 --- a/app/ui/guests/table.tsx +++ b/app/ui/guests/table.tsx @@ -1,3 +1,5 @@ +'use client' + import { Guest } from '@/app/lib/definitions'; import SkeletonRow from './skeleton-row'; import { Suspense } from 'react';