Fix compile errors

Signed-off-by: Bryan Frimin <bryan@getprobo.com>
This commit is contained in:
Bryan Frimin
2025-12-02 11:20:12 +01:00
parent 85bff72e0e
commit 0dd5a20f75
6 changed files with 6 additions and 6 deletions

View File

@@ -18,7 +18,7 @@ export function CountriesField<T extends FieldValues = FieldValues>({ control, n
name={name}
render={({ field }) => (
<CountriesFieldInput
value={field.value}
value={field.value ?? []}
onValueChange={field.onChange}
disabled={disabled}
/>

View File

@@ -148,7 +148,7 @@ function InviteUserDialogContent({ children, connectionId, onRefetch }: Props) {
render={({ field }) => (
<>
<Checkbox
checked={field.value}
checked={field.value ?? false}
onChange={field.onChange}
/>
<label