Small changes

This commit is contained in:
Natsumi
2025-11-17 20:17:44 +11:00
parent fd73bdae90
commit fdeb8fa38f
3 changed files with 5 additions and 5 deletions
+2 -2
View File
@@ -1,4 +1,4 @@
import { reactive, ref, watch } from 'vue';
import { reactive, ref, shallowReactive, watch } from 'vue';
import { defineStore } from 'pinia';
import { useI18n } from 'vue-i18n';
@@ -37,7 +37,7 @@ export const useGalleryStore = defineStore('Gallery', () => {
instanceInventoryQueueWorker: null
});
const cachedEmoji = new Map();
const cachedEmoji = shallowReactive(new Map());
const galleryTable = ref([]);