From 2d07435ecb59efe9041c22c7df31906eb5d09666 Mon Sep 17 00:00:00 2001
From: Haneul-Kim <4188989@naver.com>
Date: Mon, 18 Mar 2024 13:23:30 +0900
Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20=EB=8D=B0=EC=9D=B4?=
=?UTF-8?q?=ED=84=B0=200,=201=EA=B0=9C=EC=9D=BC=20=EB=95=8C=20=EC=A7=80?=
=?UTF-8?q?=EB=8F=84=20=EB=A6=AC=EC=8A=A4=ED=8A=B8=20css=20=EC=88=98?=
=?UTF-8?q?=EC=A0=95?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
---
app/(route)/artist/[artistId]/page.tsx | 6 +++---
.../_components/tab/MyLocationTab/index.tsx | 16 ++++++++--------
2 files changed, 11 insertions(+), 11 deletions(-)
diff --git a/app/(route)/artist/[artistId]/page.tsx b/app/(route)/artist/[artistId]/page.tsx
index 8455a1d6..52aa1fc8 100644
--- a/app/(route)/artist/[artistId]/page.tsx
+++ b/app/(route)/artist/[artistId]/page.tsx
@@ -89,7 +89,7 @@ const ArtistIdPage = () => {
{mapVar.toggleTab && (
-
+
@@ -109,9 +109,9 @@ const ArtistIdPage = () => {
인기순
-
+
{isEmpty ? (
-
행사가 없습니다.
+
행사가 없습니다.
) : (
{artistData.pages.map((page) =>
diff --git a/app/(route)/mypage/_components/tab/MyLocationTab/index.tsx b/app/(route)/mypage/_components/tab/MyLocationTab/index.tsx
index 7519a1e3..ce61ea98 100644
--- a/app/(route)/mypage/_components/tab/MyLocationTab/index.tsx
+++ b/app/(route)/mypage/_components/tab/MyLocationTab/index.tsx
@@ -1,15 +1,15 @@
"use client";
import EventCard from "@/(route)/artist/[artistId]/_components/EventCard";
-import { instance } from "@/api/api";
+import { useQuery } from "@tanstack/react-query";
+import Image from "next/image";
+import { useState } from "react";
import KakaoMap from "@/components/KakaoMap";
import TimeFilter from "@/components/TimeFilter";
-import { STATUS } from "@/constants/eventStatus";
+import { instance } from "@/api/api";
import useCustomMap from "@/hooks/useCustomMap";
import { EventCardType } from "@/types/index";
-import { useQuery } from "@tanstack/react-query";
-import Image from "next/image";
-import { useState } from "react";
+import { STATUS } from "@/constants/eventStatus";
interface Props {
userId: string;
@@ -45,12 +45,12 @@ const MyLocationTab = ({ userId }: Props) => {
{mapVar.toggleTab && (
-
+
-
+
{isEmpty ? (
-
행사가 없습니다.
+
행사가 없습니다.
) : (
{myEventsData?.map((event) => (