Skip to content

Commit

Permalink
๐Ÿ”ง chore: hotFestival ํŒŒ์ผ ์œ„์น˜ ๋ณ€๊ฒฝ #26
Browse files Browse the repository at this point in the history
  • Loading branch information
froggy1014 committed Aug 17, 2024
1 parent dddff62 commit d01acab
Show file tree
Hide file tree
Showing 9 changed files with 6 additions and 6 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion src/app/(home)/_components/FestivalHot.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import Link from "next/link";
import { FC } from "react";

import { HostFestivalData } from "@/apis/festivals/types/hotFestival";
import { HostFestivalData } from "@/apis/festivals/hotFestival/types/hotFestival";
import { TrendFestivalCard } from "@/components/core/Card";
import { ArrowRightSmallIcon } from "@/components/icons";
import { FIESTA_ENDPOINTS } from "@/config";
Expand Down
2 changes: 1 addition & 1 deletion src/app/(home)/festivals/mostlike/page.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { createSearchParamsCache, parseAsInteger } from "nuqs/server";

import { getHotFestival } from "@/apis/festivals/hotFestival";
import { getHotFestival } from "@/apis/festivals/hotFestival/hotFestival";
import Pagination from "@/components/Pagination/Pagination";
import { DefaultHeader } from "@/layout/Mobile/MobileHeader";

Expand Down
2 changes: 1 addition & 1 deletion src/app/(home)/festivals/mostlike/view.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HostFestivalData } from "@/apis/festivals/types/hotFestival";
import { HostFestivalData } from "@/apis/festivals/hotFestival/types/hotFestival";
import { TrendFestivalCard } from "@/components/core/Card";

interface Props {
Expand Down
2 changes: 1 addition & 1 deletion src/app/(home)/page.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getHotFestival } from "@/apis/festivals/hotFestival";
import { getHotFestival } from "@/apis/festivals/hotFestival/hotFestival";
import { HomeHeader } from "@/layout/Mobile/MobileHeader";
import NavigationBar from "@/layout/Mobile/NavigationBar";

Expand Down
2 changes: 1 addition & 1 deletion src/app/(home)/view.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { HostFestivalData } from "@/apis/festivals/types/hotFestival";
import { HostFestivalData } from "@/apis/festivals/hotFestival/types/hotFestival";

import FestivalHot from "./_components/FestivalHot";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import Image from "next/image";
import Link, { LinkProps } from "next/link";
import { FC } from "react";

import { FestivalListModel } from "@/apis/festivals/types/hotFestival";
import { FestivalListModel } from "@/apis/festivals/hotFestival/types/hotFestival";
import { DateTag } from "@/components/core/Tag";
import useDayjs from "@/hooks/useDayjs";

Expand Down

0 comments on commit d01acab

Please sign in to comment.