We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42bf6da commit 6f13facCopy full SHA for 6f13fac
demo-app/src/routes/components/Inputs/+page.svelte
@@ -1,10 +1,9 @@
1
<script lang="ts">
2
import SourceButton from '$lib/components/SourceButton.svelte';
3
import { alertController, IonPage } from 'ionic-svelte';
4
- import { onMount } from 'svelte';
5
6
import { accountSchema as schema } from './account.interface';
7
- import { enhance, getFormWritable, validate } from './spa-enhance';
+ import { enhance, getFormWritable } from './spa-enhance';
8
9
const form = getFormWritable();
10
@@ -37,10 +36,6 @@
37
36
})
38
.then((alert) => alert.present());
39
}
40
-
41
- onMount(() => {
42
- console.log('Validate', validate);
43
- });
44
</script>
45
46
<svelte:head>
0 commit comments