Skip to content

Commit

Permalink
fix quest status
Browse files Browse the repository at this point in the history
  • Loading branch information
imhson committed Dec 16, 2024
1 parent 7132bd0 commit b0eff28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export default function QuestDetailModal({
const xpImageSrc = quest.pointText == 'KP' ? KPImage : quest.pointText == 'SF' ? SFImage : XPImage
const xpText = quest.pointText

const [status, setStatus] = useState(quest.status)
const [status, setStatus] = useState(quest.reward_status)
const [checking, setChecking] = useState(false)
const { query, locale } = useRouter()
const slug = query.campaignSlug as string
Expand Down

0 comments on commit b0eff28

Please sign in to comment.