fix lint / TS errors in create-notification.ts

This commit is contained in:
Hazelnoot 2024-10-15 21:22:23 -04:00
parent 8a34d8e9d2
commit c5f1279d4b

View file

@ -251,9 +251,9 @@ async function composeNotification(data: PushNotificationDataMap[keyof PushNotif
}];
case 'edited':
return [t('_notification.edited', { name: getUserName(data.body.user) }), {
return [i18n.ts._notification.edited, {
body: data.body.note.text ?? '',
icon: data.body.user.avatarUrl,
icon: data.body.user.avatarUrl ?? undefined,
badge: iconUrl('messages'),
data,
}];