diff --git a/client/src/stores/historyItemsStore.ts b/client/src/stores/historyItemsStore.ts index f1b6b8b91544..120a367ba6e2 100644 --- a/client/src/stores/historyItemsStore.ts +++ b/client/src/stores/historyItemsStore.ts @@ -8,13 +8,12 @@ import { reverse } from "lodash"; import { defineStore } from "pinia"; import Vue, { computed, ref } from "vue"; +import type { DatasetSummary, HDCASummary } from "@/api"; import { HistoryFilters } from "@/components/History/HistoryFilters"; import { mergeArray } from "@/store/historyStore/model/utilities"; import { LastQueue } from "@/utils/promise-queue"; import { urlData } from "@/utils/url"; -import { type DatasetSummary, type HDCASummary } from "./services"; - type HistoryItem = DatasetSummary | HDCASummary; const limit = 100;