Files
twenty/packages/twenty-front/src/modules/captcha/states/captchaTokenState.ts
T
Charles Bochet b51eb6471f Jotai 12 (#18160)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-23 12:01:37 +01:00

6 lines
208 B
TypeScript

import { createStateV2 } from '@/ui/utilities/state/jotai/utils/createStateV2';
export const captchaTokenState = createStateV2<string | undefined>({
key: 'captchaTokenState',
defaultValue: undefined,
});