Skip to content

Commit 95c4c12

Browse files
authored
omar/eng-87-signup-agree-to-terms-is-checked-by-default (#607)
1 parent b86782b commit 95c4c12

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

apps/web/src/app/join/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { datePlus } from '@u22n/utils/ms';
1717

1818
export default function Page() {
1919
const [username, setUsername] = useState<string>('');
20-
const [agree, setAgree] = useState(true);
20+
const [agree, setAgree] = useState(false);
2121
const router = useRouter();
2222
const debouncedUsername = useDebounce(username, 1000);
2323
const cookies = useCookies();

0 commit comments

Comments
 (0)