From b167d94ba12c0df8f2c8f3e9b26c3d07878102d5 Mon Sep 17 00:00:00 2001 From: kakkokari-gtyih <67428053+kakkokari-gtyih@users.noreply.github.com> Date: Sun, 1 Sep 2024 17:54:33 +0900 Subject: [PATCH] fix icon --- packages/sw/src/scripts/create-notification.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/sw/src/scripts/create-notification.ts b/packages/sw/src/scripts/create-notification.ts index a97cfbbbef..2b7dfd4f2d 100644 --- a/packages/sw/src/scripts/create-notification.ts +++ b/packages/sw/src/scripts/create-notification.ts @@ -224,7 +224,7 @@ async function composeNotification(data: PushNotificationDataMap[keyof PushNotif } as const satisfies Record; return [i18n.tsx._notification.exportOfXCompleted({ x: entityName[data.body.exportedEntity] }), { - badge: iconUrl('users'), + badge: iconUrl('circle-check'), data, }]; }