From fb89b20d5e5eda10738c2a8391a4beb4699ff49a Mon Sep 17 00:00:00 2001 From: skywalker Date: Wed, 21 Aug 2024 23:11:22 +0300 Subject: [PATCH] chore(linter): run prettier --- client/src/pages/catalogue/api/loader.ts | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/client/src/pages/catalogue/api/loader.ts b/client/src/pages/catalogue/api/loader.ts index 1e562611..0aba5e0f 100644 --- a/client/src/pages/catalogue/api/loader.ts +++ b/client/src/pages/catalogue/api/loader.ts @@ -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; @@ -18,7 +22,7 @@ export const loader = async (): Promise => { {}, { withCredentials: true, - } + }, ); const favoriteInstrumentIds = await fetchFavoriteInstrumentIdsList();