Documentation Index
Fetch the complete documentation index at: https://docs.getpara.com/llms.txt
Use this file to discover all available pages before exploring further.
The useResendVerificationCode hook resends the verification code for signup, login, or account linking.
Import
import { useResendVerificationCode } from "@getpara/react-native-wallet";
Usage
import { useResendVerificationCode } from "@getpara/react-native-wallet";
import { Button } from "react-native";
function ResendCodeButton() {
const { resendVerificationCodeAsync, isPending } = useResendVerificationCode();
return (
<Button
title={isPending ? "Sending..." : "Resend Code"}
onPress={() => resendVerificationCodeAsync({ type: "SIGNUP" })}
disabled={isPending}
/>
);
}