diff options
author | Eric Bailey <git@esb.lol> | 2025-08-11 15:51:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-08-11 15:51:08 -0500 |
commit | a3bb8cca6e9e157bb613fdb7f053308dcabdff24 (patch) | |
tree | 24c02f0a44d041233ba6428becb7ad7ebdd6a4bb /src/screens/Signup/StepInfo/index.tsx | |
parent | bb949e4f44c4ed1e19c7bddc5779515b419a7022 (diff) | |
download | voidsky-a3bb8cca6e9e157bb613fdb7f053308dcabdff24.tar.zst |
Fix policy state (#8821)
* Mark completedForDevice prior to creating an account * Mark policies as completed after initial create account step
Diffstat (limited to 'src/screens/Signup/StepInfo/index.tsx')
-rw-r--r-- | src/screens/Signup/StepInfo/index.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/screens/Signup/StepInfo/index.tsx b/src/screens/Signup/StepInfo/index.tsx index cf4a9297e..b7db3fb98 100644 --- a/src/screens/Signup/StepInfo/index.tsx +++ b/src/screens/Signup/StepInfo/index.tsx @@ -20,6 +20,7 @@ import {Envelope_Stroke2_Corner0_Rounded as Envelope} from '#/components/icons/E import {Lock_Stroke2_Corner0_Rounded as Lock} from '#/components/icons/Lock' import {Ticket_Stroke2_Corner0_Rounded as Ticket} from '#/components/icons/Ticket' import {Loader} from '#/components/Loader' +import {usePreemptivelyCompleteActivePolicyUpdate} from '#/components/PolicyUpdateOverlay/usePreemptivelyCompleteActivePolicyUpdate' import {BackNextButtons} from '../BackNextButtons' function sanitizeDate(date: Date): Date { @@ -45,6 +46,8 @@ export function StepInfo({ }) { const {_} = useLingui() const {state, dispatch} = useSignupContext() + const preemptivelyCompleteActivePolicyUpdate = + usePreemptivelyCompleteActivePolicyUpdate() const inviteCodeValueRef = useRef<string>(state.inviteCode) const emailValueRef = useRef<string>(state.email) @@ -129,6 +132,7 @@ export function StepInfo({ }) } + preemptivelyCompleteActivePolicyUpdate() dispatch({type: 'setInviteCode', value: inviteCode}) dispatch({type: 'setEmail', value: email}) dispatch({type: 'setPassword', value: password}) |