Resolved Svelte check errors and modernized component event handling.

Implemented Svelte 5 callback props (onsuccess, oncancel) for Badge create and upload forms, replacing legacy dispatchers.

Updated the AE Field Editor to accept an optional 'id' prop, resolving property mismatch errors.

Updated the Event Settings page to use the new callback prop interface, clearing type assignment errors reported by 'npm run check'.
This commit is contained in:
Scott Idem
2026-02-16 19:11:59 -05:00
parent de7e8443c8
commit 4a7ac31197
4 changed files with 25 additions and 12 deletions

View File

@@ -9,6 +9,7 @@
interface Props {
// Core Identifiers
id?: string;
object_type: string;
object_id: string;
field_name: string;
@@ -42,6 +43,7 @@
}
let {
id,
object_type,
object_id,
field_name,