parent
69bec6ea7c
commit
2810c6d6ba
|
|
@ -24,7 +24,8 @@ export function FormSendReset() {
|
||||||
|
|
||||||
export function FormReset() {
|
export function FormReset() {
|
||||||
const { token } = useParams<{ token: string }>();
|
const { token } = useParams<{ token: string }>();
|
||||||
const client = useContext(AppContext);
|
const config = useApplicationState().config;
|
||||||
|
const client = config.createClient();
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
|
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
|
|
@ -29,7 +29,8 @@ export function FormResend() {
|
||||||
export function FormVerify() {
|
export function FormVerify() {
|
||||||
const [error, setError] = useState<undefined | string>(undefined);
|
const [error, setError] = useState<undefined | string>(undefined);
|
||||||
const { token } = useParams<{ token: string }>();
|
const { token } = useParams<{ token: string }>();
|
||||||
const client = useContext(AppContext);
|
const config = useApplicationState().config;
|
||||||
|
const client = config.createClient();
|
||||||
const history = useHistory();
|
const history = useHistory();
|
||||||
|
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue