Skip to content

Commit

Permalink
Merge pull request #16916 from davelopez/fix_imports
Browse files Browse the repository at this point in the history
Fix import in historyItemsStore.ts
  • Loading branch information
davelopez authored Oct 25, 2023
2 parents c5ad97c + b3aaa5c commit d8b9929
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions client/src/stores/historyItemsStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit d8b9929

Please sign in to comment.