2
0
forked from jmug/cactoide

fix: linting issue

This commit is contained in:
Levente Orban
2025-09-02 11:04:15 +02:00
parent e20018735e
commit 8176b2317f

View File

@@ -4,7 +4,7 @@
import { goto } from '$app/navigation';
export let data;
export let form: any;
export let form;
let eventData = {
name: data.event.name,
@@ -29,7 +29,7 @@
// Pre-fill form with values from server on error
$: if (form && 'values' in form && form.values) {
const values = form.values as any;
const values = form.values;
eventData = {
...eventData,
...values,