diff options
| author | Sebastien Castiel <sebastien@castiel.me> | 2023-12-06 19:50:56 -0500 |
|---|---|---|
| committer | Sebastien Castiel <sebastien@castiel.me> | 2023-12-06 19:50:56 -0500 |
| commit | 6ce2329f5ce20f8352e3ea15594f2532ab8a392c (patch) | |
| tree | d8d5fc4697ec0e51cd0267d5c3ffa9d048076c68 /src/components | |
| parent | e747ec3ea02dd01e9ffa9e398e24e6939a5b738c (diff) | |
Reimbursements
Diffstat (limited to 'src/components')
| -rw-r--r-- | src/components/group-form.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/src/components/group-form.tsx b/src/components/group-form.tsx index 1057f27..39edd72 100644 --- a/src/components/group-form.tsx +++ b/src/components/group-form.tsx @@ -56,9 +56,8 @@ export function GroupForm({ group, onSubmit }: Props) { onSubmit={form.handleSubmit(async (values) => { await onSubmit(values) })} - className="space-y-8" > - <Card> + <Card className="mb-4"> <CardHeader> <CardTitle>Group information</CardTitle> </CardHeader> @@ -99,7 +98,7 @@ export function GroupForm({ group, onSubmit }: Props) { /> </FormControl> <FormDescription> - We’ll used it to display amounts. + We’ll use it to display amounts. </FormDescription> <FormMessage /> </FormItem> @@ -107,7 +106,7 @@ export function GroupForm({ group, onSubmit }: Props) { /> </CardContent> </Card> - <Card> + <Card className="mb-4"> <CardHeader> <CardTitle>Participants</CardTitle> <CardDescription> |
