diff --git a/client/src/app/playground/(post)/DeleteDialog.tsx b/client/src/app/playground/(post)/DeleteDialog.tsx index c9b4420..d00a771 100644 --- a/client/src/app/playground/(post)/DeleteDialog.tsx +++ b/client/src/app/playground/(post)/DeleteDialog.tsx @@ -1,12 +1,4 @@ -'use client' - -import { - Dialog, - DialogContent, - DialogHeader, - DialogTitle, - DialogDescription, -} from '@/components/ui/dialog' +import { Dialog, DialogContent, DialogHeader, DialogTitle, DialogDescription } from '@/components/ui/dialog' import { Button } from '@/components/ui/button' import { useToast } from '@/hooks' diff --git a/client/src/app/playground/(post)/Post.tsx b/client/src/app/playground/(post)/Post.tsx index 22f0e6f..e25b63c 100644 --- a/client/src/app/playground/(post)/Post.tsx +++ b/client/src/app/playground/(post)/Post.tsx @@ -14,7 +14,6 @@ import { cn, formatRelativeDate } from '@/lib/utils' import { UserTooltip } from '@/components/users' import { Avatar } from '@/components' import { LikeButton, ShareDialog, MoreButton } from '.' -import Image from 'next/image' interface Media { type: 'image' | 'video' diff --git a/client/src/app/playground/page.tsx b/client/src/app/playground/page.tsx index 6f81032..60781de 100644 --- a/client/src/app/playground/page.tsx +++ b/client/src/app/playground/page.tsx @@ -1,5 +1,3 @@ -'use client' - import { Post } from './(post)' const Page = () => {