Add onComplete on interactionCompleted state (#353)
Some checks failed
Master / Build (push) Has been cancelled

This commit is contained in:
Ildar Galeev 2024-10-11 16:11:23 +07:00 committed by GitHub
parent ea5b03fb5d
commit ddc66a6b35
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -45,6 +45,9 @@ export function PaymentResultView() {
onComplete(); onComplete();
} }
break; break;
case 'interactionCompleted':
onComplete();
break;
} }
}, [onComplete, lastCondition]); }, [onComplete, lastCondition]);