From ecffbdb11ddcb42c31749f78b394aa42190f2bca Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 15 Aug 2024 20:46:36 +0800 Subject: [PATCH] fix: lint --- .../tv-show/query/query-tv-show-key-factory.ts | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/api/tv-show/query/query-tv-show-key-factory.ts b/src/api/tv-show/query/query-tv-show-key-factory.ts index a2cad2a..2a8e6c5 100644 --- a/src/api/tv-show/query/query-tv-show-key-factory.ts +++ b/src/api/tv-show/query/query-tv-show-key-factory.ts @@ -1,14 +1,14 @@ -import { TvShowParams } from "../../../types/tvShow.ts"; +import {TvShowParams} from "../../../types/tvShow.ts"; const tvShowKeys = { - tvShows: ["tvShows"], - tvShowList: () => [...tvShowKeys.tvShows, "list"], - tvShowCollection: (params: TvShowParams) => [ - ...tvShowKeys.tvShowList(), - params, - ], + tvShows: ["tvShows"], + tvShowList: () => [...tvShowKeys.tvShows, "list"], + tvShowCollection: (params: TvShowParams) => [ + ...tvShowKeys.tvShowList(), + params, + ], tvShowDetail: (id: string) => ['tv-show-details', id], - tvShowCredits: (id: string) => ['tv-show-credits', id], + tvShowCredits: (id: string) => ['tv-show-credits', id], }; export default tvShowKeys;