fix: Remove unused variable

This commit is contained in:
April Hall 2025-02-22 16:19:07 -05:00
parent 99179ef348
commit 8b61368b44
No known key found for this signature in database
GPG Key ID: A49AC35CB186266C

View File

@ -11,7 +11,7 @@
let open: boolean = $state(false);
let { data }: { data: SuperValidated<Infer<NewChannelSchema>> } = $props();
const { form, errors, constraints, enhance } = superForm(data, {
const { form, errors, enhance } = superForm(data, {
validators: zodClient(newChannelSchema),
onResult: ({ result }) => {
if (result.type === 'success') {