Skip to content

Commit

Permalink
fix: lint
Browse files Browse the repository at this point in the history
  • Loading branch information
frank-mendez committed Aug 15, 2024
1 parent fb6aab0 commit ecffbdb
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/api/tv-show/query/query-tv-show-key-factory.ts
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit ecffbdb

Please sign in to comment.