diff --git a/src/market/Market.vue b/src/market/Market.vue index ef37db0..85e4361 100644 --- a/src/market/Market.vue +++ b/src/market/Market.vue @@ -12,7 +12,12 @@ type MarketItemStorage = { } const item = ref(""); -const oldStorage = useStorage('market-items', []); // TODO: remove this after a while +/** + * @deprecated use itemsStorage instead + * + * TODO: remove this in the future + */ +const oldStorage = useStorage('market-items', []); const itemsStorage = useStorage('market-scan-items', []); const items = ref([]); const addOrRelaod = async (type: MarketType) => {