diff options
| author | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-10 16:23:33 +0700 |
|---|---|---|
| committer | Rafi Zadanly <zadanlyr@gmail.com> | 2023-11-10 16:23:33 +0700 |
| commit | 5a9210e560ca47d8f4d8c43b06fc93d1d064a6f6 (patch) | |
| tree | e5ac9162bd86829dd149278cdf9db70076816200 /src-migrate/modules/register/components/TermCondition.tsx | |
| parent | 4bed066c03dc55a8f811ff2e23e019d8adc64495 (diff) | |
Add close on modal otp activation, change validation register schema, fix term and condition checkbox
Diffstat (limited to 'src-migrate/modules/register/components/TermCondition.tsx')
| -rw-r--r-- | src-migrate/modules/register/components/TermCondition.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src-migrate/modules/register/components/TermCondition.tsx b/src-migrate/modules/register/components/TermCondition.tsx index aaba6604..6b95ba19 100644 --- a/src-migrate/modules/register/components/TermCondition.tsx +++ b/src-migrate/modules/register/components/TermCondition.tsx @@ -10,7 +10,7 @@ const TermCondition = () => { return ( <> <div className="mt-4 flex items-center gap-x-2"> - <Checkbox id='tnc' name='tnc' checked={isCheckedTNC} onChange={toggleCheckTNC} /> + <Checkbox id='tnc' name='tnc' isChecked={isCheckedTNC} onChange={toggleCheckTNC} /> <div> <label htmlFor="tnc" className="cursor-pointer">Dengan ini saya menyetujui</label> {' '} |
