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