0
Fork 0
mirror of https://github.com/logto-io/logto.git synced 2025-01-06 20:40:08 -05:00

fix(experience): add missing agreeToTermsPolicy deps (#6148)

This commit is contained in:
Xiao Yijun 2024-07-01 17:40:11 +08:00 committed by GitHub
parent ac063f9140
commit fa325c9de1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -44,7 +44,7 @@ const useSingleSignOnRegister = () => {
redirectTo(result.redirectTo); redirectTo(result.redirectTo);
} }
}, },
[handleError, navigate, redirectTo, request, termsValidation] [agreeToTermsPolicy, handleError, navigate, redirectTo, request, termsValidation]
); );
}; };