From 5747c391066c45b6b36ff3245786dff8ec9f2b62 Mon Sep 17 00:00:00 2001 From: pa Date: Thu, 23 Oct 2025 16:06:49 +0900 Subject: [PATCH] add ingore state for sentry --- src/stores/index.js | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/src/stores/index.js b/src/stores/index.js index 87d20d03..c102c107 100644 --- a/src/stores/index.js +++ b/src/stores/index.js @@ -60,6 +60,17 @@ pinia.use( // @ts-ignore ...state.Notification, notificationTable: null + }, + Moderation: { + // @ts-ignore + ...state.Moderation, + playerModerationTable: null + }, + Photon: null, + SharedFeed: { + // @ts-ignore + ...state.SharedFeed, + sharedFeed: null } }) })