diff options
Diffstat (limited to 'src/app/groups/create/page.tsx')
| -rw-r--r-- | src/app/groups/create/page.tsx | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/src/app/groups/create/page.tsx b/src/app/groups/create/page.tsx index 4f220d2..82047a5 100644 --- a/src/app/groups/create/page.tsx +++ b/src/app/groups/create/page.tsx @@ -1,9 +1,6 @@ import { GroupForm } from '@/components/group-form' -import { Button } from '@/components/ui/button' import { createGroup } from '@/lib/api' import { groupFormSchema } from '@/lib/schemas' -import { ChevronLeft } from 'lucide-react' -import Link from 'next/link' import { redirect } from 'next/navigation' export default function CreateGroupPage() { @@ -14,16 +11,5 @@ export default function CreateGroupPage() { redirect(`/groups/${group.id}`) } - return ( - <main> - <div className="mb-4"> - <Button variant="ghost" asChild> - <Link href="/groups"> - <ChevronLeft className="w-4 h-4 mr-2" /> Back to recent groups - </Link> - </Button> - </div> - <GroupForm onSubmit={createGroupAction} /> - </main> - ) + return <GroupForm onSubmit={createGroupAction} /> } |
