From 1e00f647ad24a75edb4a865e3e5b2dc0f0e25fcd Mon Sep 17 00:00:00 2001 From: Jasmin Date: Mon, 14 Oct 2024 20:35:17 +0200 Subject: [PATCH] fix: remove Steam from inventory sync notification --- pages/changelog.tsx | 8 +++++--- shared/stores/inventory/inventory.service.ts | 2 +- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/pages/changelog.tsx b/pages/changelog.tsx index c8c2a44..6789b32 100644 --- a/pages/changelog.tsx +++ b/pages/changelog.tsx @@ -22,7 +22,7 @@ const Changelog: NextPage = () => {

@@ -30,10 +30,12 @@ const Changelog: NextPage = () => {

diff --git a/shared/stores/inventory/inventory.service.ts b/shared/stores/inventory/inventory.service.ts index 3969470..50a8402 100644 --- a/shared/stores/inventory/inventory.service.ts +++ b/shared/stores/inventory/inventory.service.ts @@ -54,7 +54,7 @@ export class InventoryService { if (res.ok) { inventoryStore.update(() => json) const notification = createNotification({ - content: 'Synced inventory from steam!', + content: 'Successfully synced inventory!', duration: 5000, type: 'success', })