From f6c247b89c4bae74ad4215fefd47abe9f732c735 Mon Sep 17 00:00:00 2001 From: Jeremy Lee <37092291+yogurtandjam@users.noreply.github.com> Date: Wed, 25 Sep 2024 10:30:21 -0400 Subject: [PATCH] fix: revert enum value for skiptransfer (#1059) --- src/constants/notifications.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/constants/notifications.ts b/src/constants/notifications.ts index 1e5dd22f7..55788fea2 100644 --- a/src/constants/notifications.ts +++ b/src/constants/notifications.ts @@ -3,7 +3,10 @@ import { SkipStatusResponse } from './skip'; /** implemented in useNotificationTypes */ export enum NotificationType { AbacusGenerated = 'AbacusGenerated', - SkipTransfer = 'SkipTransfer', + // Until we have migrations enabled, we need to keep underlying values the same + // So the notifications don't get retriggered + // It's pretty scary getting a bunch of unexpected withdrawal notifications + SkipTransfer = 'SquidTransfer', TriggerOrder = 'TriggerOrder', ReleaseUpdates = 'ReleaseUpdates', ApiError = 'ApiError',