Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[REFACTOR] 자잘한 버그 해결 #43

Merged
merged 8 commits into from
Mar 10, 2024
Prev Previous commit
Next Next commit
[REFACTOR] 팝업스토어 작성 시 리프레시
kyukong committed Mar 10, 2024
commit e38be5de775ab3476b37177229b86bbaa09a27ee
3 changes: 3 additions & 0 deletions src/pages/business/plan.jsx
Original file line number Diff line number Diff line change
@@ -78,6 +78,9 @@ const Plan = () => {
if (result.data.message) {
alert(result.data.message);
}
if (result.status === 200) {
window.location.href = `/plans/${planId}`
}
const response = await PopupApi.findByPlanId(planId);
setPopupData(response.data.data);
} catch (error) {