diff --git a/apps/user/app/(main)/tos/page.tsx b/apps/user/app/(main)/tos/page.tsx index ad42f55..5b10368 100644 --- a/apps/user/app/(main)/tos/page.tsx +++ b/apps/user/app/(main)/tos/page.tsx @@ -1,11 +1,11 @@ -'use client'; - +import { getTos } from '@/services/common/common'; import { Markdown } from '@repo/ui/markdown'; -export default function Page() { +export default async function Page() { + const { data } = await getTos(); return (