fix(web-admin): add type cast to NotificationModal initial prop
TypeScript strict check rejects NotificationItem|{} union as
Partial<CreateNotificationPayload>&{id?}. Add explicit cast to satisfy
the type checker without changing runtime behavior.
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
66a454df93
commit
3453731bc8
|
|
@ -691,9 +691,9 @@ export default function NotificationsPage() {
|
||||||
{modal && (
|
{modal && (
|
||||||
<NotificationModal
|
<NotificationModal
|
||||||
initial={
|
initial={
|
||||||
modal.mode === 'edit'
|
(modal.mode === 'edit'
|
||||||
? { ...modal.item, id: modal.item.id }
|
? { ...modal.item, id: modal.item.id }
|
||||||
: {}
|
: {}) as Partial<CreateNotificationPayload> & { id?: string }
|
||||||
}
|
}
|
||||||
allTags={allTags}
|
allTags={allTags}
|
||||||
onSave={handleSave}
|
onSave={handleSave}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue