-
Notifications
You must be signed in to change notification settings - Fork 2
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
#625 create quest completion system #647
Conversation
✅ Deploy Preview for taxi-dev-preview ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Co-authored-by: Geon Kim <geon6757@kaist.ac.kr>
@@ -174,6 +178,7 @@ const ModalMypageModify = ({ | |||
method: "post", | |||
data: { nickname }, | |||
onError: () => setAlert(t("page_modify.nickname_failed")), | |||
onSuccess: () => event2023FallQuestComplete("nicknameChanging"), // event2023Fall |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거 주석 //#region Event2023Fall
사용해주세요
@@ -183,6 +188,7 @@ const ModalMypageModify = ({ | |||
method: "post", | |||
data: { account }, | |||
onError: () => setAlert(t("page_modify.account_failed")), | |||
onSuccess: () => event2023FallQuestComplete("accountChanging"), // event2023Fall |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
동일합니다
//#region Event2023Fall | ||
const onChangeIsOpenWithEvent2023Fall = (isOpen: boolean) => { | ||
onChangeIsOpen?.(isOpen); | ||
event2023FallQuestComplete("roomSharing"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
event2023FallQuestComplete("roomSharing"); | |
if (!isOpen) event2023FallQuestComplete("roomSharing"); |
@@ -39,6 +40,7 @@ const ModalChatSettlement = ({ | |||
const isValidAccount = useMemo(() => regExpTest.account(account), [account]); | |||
const isRequesting = useRef<boolean>(false); | |||
const sendMessage = useSendMessage(roomInfo._id, isRequesting); | |||
const event2023FallQuestComplete = useEvent2023FallQuestComplete(); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
주석 !
onSuccess: () => fetchLoginInfo(), | ||
onSuccess: () => { | ||
//#region event2023Fall | ||
event2023FallQuestComplete("accountChanging"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
event2023FallQuestComplete("accountChanging"); | |
if (account !== "") event2023FallQuestComplete("accountChanging"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
수고하셨습니다 ~~ 👍 👍
Summary
It closes #625