Fix signup submit disabled when waiting for captcha without provider (#9796)

This commit is contained in:
Weiko
2025-01-22 17:49:11 +01:00
committed by GitHub
parent d340605578
commit 5902dbd0b4
6 changed files with 35 additions and 43 deletions

View File

@ -2,7 +2,7 @@ import { createState } from '@ui/utilities/state/utils/createState';
import { Captcha } from '~/generated/graphql';
export const captchaProviderState = createState<Captcha | null>({
key: 'captchaProviderState',
export const captchaState = createState<Captcha | null>({
key: 'captchaState',
defaultValue: null,
});