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}
|
||||
{editMode}
|
||||
showEdit={showEdit}
|
||||
onEdit={onEdit}
|
||||
onSave={onSave}
|
||||
onCancel={onCancel}
|
||||
onEdit={onEdit ?? (() => {})}
|
||||
onSave={onSave ?? (() => {})}
|
||||
onCancel={onCancel ?? (() => {})}
|
||||
{isSaving}
|
||||
/>
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue