Skip to content

Commit

Permalink
chore(linter): run prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
bas-kirill committed Aug 21, 2024
1 parent c699d80 commit fb89b20
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions client/src/pages/catalogue/api/loader.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,13 @@
import { fetchFavoriteInstrumentIdsList } from "shared/api/fetch-favorite-instrument-ids.list";
import { CATALOGUE_DEFAULT_PAGE_NUMBER, CATALOGUE_DEFAULT_PAGE_SIZE } from "shared/config";
import {
CATALOGUE_DEFAULT_PAGE_NUMBER,
CATALOGUE_DEFAULT_PAGE_SIZE,
} from "shared/config";
import { GetInstrumentsByCriteriaPaginatedApi } from "generated/api";
import { GetInstrumentByCriteriaPageResponse } from "generated/model";

const getInstrumentsByCriteriaPaginated = new GetInstrumentsByCriteriaPaginatedApi();
const getInstrumentsByCriteriaPaginated =
new GetInstrumentsByCriteriaPaginatedApi();

export interface CatalogueLoader {
instrumentPage: GetInstrumentByCriteriaPageResponse;
Expand All @@ -18,7 +22,7 @@ export const loader = async (): Promise<CatalogueLoader> => {
{},
{
withCredentials: true,
}
},
);
const favoriteInstrumentIds = await fetchFavoriteInstrumentIdsList();

Expand Down

0 comments on commit fb89b20

Please sign in to comment.