fix: DetailScaffold.svelte optional props (162 -> 161 errors)

Co-Authored-By: Justin Edmund <justin@jedmund.com>
This commit is contained in:
Devin AI 2025-11-28 21:23:03 +00:00
parent 574b4b0e7f
commit 791d0b52d0

View file

@ -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}
/> />