Skip to content

Commit

Permalink
chore: fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
FourwingsY committed Nov 26, 2024
1 parent 11910d4 commit 71db9e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ export default function BuildingDetailSheet({ building: initialData, questId, vi
<>
퀘스트 상태 <b>{conquered.length}</b>/{building.places.length}
<br />
<small>*앱에서 장소 등록 시, '정복대상'이 '정복완료'로 자동 반영됩니다.</small>
<small>{`*앱에서 장소 등록 시, '정복대상'이 '정복완료'로 자동 반영됩니다.`}</small>
</>
)}
</S.Status>
Expand Down
6 changes: 2 additions & 4 deletions app/modals/BuildingDetailSheet/BuildingDetailSheet.mobile.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,12 @@ import { BasicModalProps } from "@reactleaf/modal"
import { useQueryClient } from "@tanstack/react-query"
import { useAtom } from "jotai"
import Image from "next/image"
import { useEffect, useMemo, useState } from "react"
import { useEffect, useMemo } from "react"

import { useQuestBuilding } from "@/lib/apis/api"
import { AppState } from "@/lib/globalAtoms"
import { QuestBuilding, QuestPlace } from "@/lib/models/quest"

import CardView from "@/icons/CardView"
import ListView from "@/icons/ListView"
import Reload from "@/icons/Reload"
import BottomSheet from "@/modals/_template/BottomSheet"

Expand Down Expand Up @@ -79,7 +77,7 @@ export default function BuildingDetailSheet({ building: initialData, questId, vi
<>
퀘스트 상태 <b>{conquered.length}</b>/{building.places.length}
<br />
<small>*앱에서 장소 등록 시, '정복대상'이 '정복완료'로 자동 반영됩니다.</small>
<small>{`*앱에서 장소 등록 시, '정복대상'이 '정복완료'로 자동 반영됩니다.`}</small>
</>
)}
</S.Status>
Expand Down

0 comments on commit 71db9e1

Please sign in to comment.