Skip to content

Commit

Permalink
fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
markdavella committed May 28, 2024
1 parent f1584d7 commit 9acc198
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions web/src/preloaders/fillerListLoader.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ import {
FillerListProgramming,
} from '@tunarr/types';
import { LoaderFunctionArgs } from 'react-router-dom';
import { getApiClient } from '../components/TunarrApiContext.tsx';
import { createPreloader } from '../helpers/preloaderUtil.ts';
import {
fillerListProgramsQuery,
fillerListQuery,
fillerListsQuery,
} from '../hooks/useFillerLists.ts';
import { setCurrentFillerList } from '../store/channelEditor/actions.ts';
import { Preloader } from '../types/index.ts';
import { createPreloader } from '../helpers/preloaderUtil.ts';
import { getApiClient } from '../components/TunarrApiContext.tsx';

export const fillerListsLoader = createPreloader((apiClient) =>
fillerListsQuery(apiClient),
Expand All @@ -29,7 +29,7 @@ const fillerListLoader = (isNew: boolean) => {
return () => () => {
const filler = {
id: 'unsaved',
name: 'New Filler Listt',
name: 'New Filler List',
contentCount: 0,
};
setCurrentFillerList(filler, []);
Expand Down

0 comments on commit 9acc198

Please sign in to comment.