@kumori/aurora-backend-handler 1.1.21 → 1.1.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/websocket-manager.ts +1 -1
package/package.json
CHANGED
package/websocket-manager.ts
CHANGED
|
@@ -1823,7 +1823,7 @@ const handleDeleteEvent = async (message: WSMessage) => {
|
|
|
1823
1823
|
if (tokenIndex !== -1) {
|
|
1824
1824
|
const deletedToken = userData.tokens[tokenIndex];
|
|
1825
1825
|
userData.tokens.splice(tokenIndex, 1);
|
|
1826
|
-
|
|
1826
|
+
tokenMap.delete(tokenId);
|
|
1827
1827
|
const tokenNotification: Notification = {
|
|
1828
1828
|
type: "success",
|
|
1829
1829
|
subtype: "token-deleted",
|