Skip to content

Commit

Permalink
fix: page-type (#30)
Browse files Browse the repository at this point in the history
  • Loading branch information
GaoNeng-wWw authored Nov 25, 2023
1 parent 32654e1 commit 76c6a7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/authenticate/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ const Register = (
export default function Page() {
const [email, setEmail] = useState('');
const [userInput, setUserInput] = useState('');
const [pageType, setPageType] = useState<PageType>('register');
const [pageType, setPageType] = useState<PageType>('wait-check');
const {buttonMessage} = useButtonMessage(pageType, '下一步');
const [policyState, setPolicyState] = useState(false);
const [loading, setLoading] = useState(false);
Expand Down

0 comments on commit 76c6a7f

Please sign in to comment.