diff --git a/src/stores/fetchData.ts b/src/stores/fetchData.ts index 4837680..49f1e8d 100644 --- a/src/stores/fetchData.ts +++ b/src/stores/fetchData.ts @@ -105,11 +105,7 @@ export const useFetchingDataStore = defineStore("fetchData", () => { itemIds = liveData.items } - if (settings.fetchingRandomly.value) { - return shuffleArray(itemIds) - } else { - return itemIds - } + return itemIds } function removeAlreadyFetchedItemIds(liveData: Extract, quantity: number) { for (const livedataCacheItem of liveDataCache) { diff --git a/src/stores/settings.ts b/src/stores/settings.ts index 85d8d80..9077147 100644 --- a/src/stores/settings.ts +++ b/src/stores/settings.ts @@ -12,10 +12,6 @@ export const useSettingsStore = defineStore("settings", () => { description: "Fetching lists immediately after selection" as const, value: false, } - fetchingRandomly = { - description: "Fetching randomly" as const, - value: false, - } displayingItemTitle = { description: "Displaying item title" as const,