Skip to content

Commit

Permalink
style(media-list): format import statements for better readability
Browse files Browse the repository at this point in the history
  • Loading branch information
AyushSehrawat committed Feb 20, 2025
1 parent 275df12 commit 6be40a5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/routes/[type=mediaType]/[list=mediaList]/+page.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
import type { PageLoad } from './$types';
import { getTVPopular, getMoviesPopular, getTrending, MediaType, TimeWindow, TMDB_LANGUAGE } from '$lib/tmdb';
import {
getTVPopular,
getMoviesPopular,
getTrending,
MediaType,
TimeWindow,
TMDB_LANGUAGE
} from '$lib/tmdb';

export const load = (async ({ fetch, params, url }) => {
const { list, type } = params;
Expand Down

0 comments on commit 6be40a5

Please sign in to comment.