From a483580906211aba2017f1f6fb99eab6630de4d6 Mon Sep 17 00:00:00 2001 From: Sirttas Date: Tue, 19 Sep 2023 10:49:04 +0200 Subject: [PATCH] deprecated --- src/market/Market.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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) => {