File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
static/assets/src/components/Inputs Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 11
11
"dev" : " vite dev" ,
12
12
"build" : " vite build" ,
13
13
"preview" : " vite preview" ,
14
+ "deploy" : " vite build && firebase deploy" ,
14
15
"check" : " svelte-kit sync && svelte-check --tsconfig ./tsconfig.json" ,
15
16
"check:watch" : " svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" ,
16
17
"lint" : " prettier --plugin-search-dir . --check . && eslint ." ,
44
45
"localforage" : " ^1.10.0" ,
45
46
"zod" : " ^3.20.6"
46
47
}
47
- }
48
+ }
Original file line number Diff line number Diff line change 58
58
</ion-header >
59
59
60
60
<ion-content fullscreen class =" ion-padding" >
61
- <form use:enhance ={{ form , schema }} id =" accountform" >
61
+ <form use:enhance ={{ form , schema }} id ="accountform" on:submit ={ submit } >
62
62
<ion-list lines =" full" class =" ion-no-margin ion-no-padding" >
63
63
<ion-item class:ion-invalid ={$form ?.errors ?.firstName }>
64
64
<ion-label position =" stacked" >
Original file line number Diff line number Diff line change @@ -75,8 +75,6 @@ export function validateField(ev) {
75
75
newStatus . success = false ;
76
76
newStatus . validate = current_validate_function
77
77
78
- console . log ( 'Found error' , name , value )
79
-
80
78
return newStatus
81
79
} )
82
80
}
You can’t perform that action at this time.
0 commit comments