Compare commits
2 Commits
d3502fd421
...
9697c40ed2
| Author | SHA1 | Date |
|---|---|---|
|
|
9697c40ed2 | |
|
|
bf5fc05a25 |
|
|
@ -364,6 +364,7 @@ const CompletionContent: React.FC<CompletionContentProps> = ({
|
|||
|
||||
const handleCloseSocialConnect = () => {
|
||||
setShowSocialModal(false);
|
||||
onVideoComplete?.();
|
||||
};
|
||||
|
||||
const handleRetry = () => {
|
||||
|
|
|
|||
|
|
@ -130,6 +130,13 @@ const GenerationFlow: React.FC<GenerationFlowProps> = ({
|
|||
}
|
||||
}, []);
|
||||
|
||||
// 사운드 스튜디오, 영상 완성 진입 시 크레딧 갱신
|
||||
useEffect(() => {
|
||||
if (wizardStep === 2 || wizardStep === 3) {
|
||||
refreshCredits();
|
||||
}
|
||||
}, [wizardStep]);
|
||||
|
||||
// 로그인 직후 사용자 정보 + 크레딧 조회
|
||||
useEffect(() => {
|
||||
const fetchUserInfo = async () => {
|
||||
|
|
|
|||
Loading…
Reference in New Issue