deprecated
This commit is contained in:
@@ -12,7 +12,12 @@ type MarketItemStorage = {
|
||||
}
|
||||
|
||||
const item = ref("");
|
||||
const oldStorage = useStorage<MarketItemStorage[]>('market-items', []); // TODO: remove this after a while
|
||||
/**
|
||||
* @deprecated use itemsStorage instead
|
||||
*
|
||||
* TODO: remove this in the future
|
||||
*/
|
||||
const oldStorage = useStorage<MarketItemStorage[]>('market-items', []);
|
||||
const itemsStorage = useStorage<MarketItemStorage[]>('market-scan-items', []);
|
||||
const items = ref<MarketResult[]>([]);
|
||||
const addOrRelaod = async (type: MarketType) => {
|
||||
|
||||
Reference in New Issue
Block a user