mirror of
https://github.com/polaroi8d/cactoide.git
synced 2026-03-22 14:15:28 +00:00
fix: linting issue
This commit is contained in:
@@ -4,7 +4,7 @@
|
|||||||
import { goto } from '$app/navigation';
|
import { goto } from '$app/navigation';
|
||||||
|
|
||||||
export let data;
|
export let data;
|
||||||
export let form: any;
|
export let form;
|
||||||
|
|
||||||
let eventData = {
|
let eventData = {
|
||||||
name: data.event.name,
|
name: data.event.name,
|
||||||
@@ -29,7 +29,7 @@
|
|||||||
|
|
||||||
// Pre-fill form with values from server on error
|
// Pre-fill form with values from server on error
|
||||||
$: if (form && 'values' in form && form.values) {
|
$: if (form && 'values' in form && form.values) {
|
||||||
const values = form.values as any;
|
const values = form.values;
|
||||||
eventData = {
|
eventData = {
|
||||||
...eventData,
|
...eventData,
|
||||||
...values,
|
...values,
|
||||||
|
|||||||
Reference in New Issue
Block a user