fix: DetailScaffold.svelte optional props (162 -> 161 errors)
Co-Authored-By: Justin Edmund <justin@jedmund.com>
This commit is contained in:
parent
574b4b0e7f
commit
791d0b52d0
1 changed files with 3 additions and 3 deletions
|
|
@ -41,9 +41,9 @@
|
||||||
{image}
|
{image}
|
||||||
{editMode}
|
{editMode}
|
||||||
showEdit={showEdit}
|
showEdit={showEdit}
|
||||||
onEdit={onEdit}
|
onEdit={onEdit ?? (() => {})}
|
||||||
onSave={onSave}
|
onSave={onSave ?? (() => {})}
|
||||||
onCancel={onCancel}
|
onCancel={onCancel ?? (() => {})}
|
||||||
{isSaving}
|
{isSaving}
|
||||||
/>
|
/>
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue