Skip to content
Snippets Groups Projects
Commit 6b82ade0 authored by 준현 강's avatar 준현 강
Browse files

[EDIT] 최대인원수 redirecting처리

parent 0a2f3007
No related branches found
No related tags found
No related merge requests found
......@@ -86,6 +86,12 @@ function ResultMakeForm() {
});
setMeetingData(response.data);
setIsLoading(false);
if (
response.data.currentParticipants === response.data.maxParticipants
) {
navigate(`/resultend/${meeting_id}`);
}
} catch (error) {
console.error("데이터 로딩 에러:", error);
setIsLoading(false);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment