Fix links
The href attribute was never actually being set.
This commit is contained in:
parent
c33d97a2ed
commit
8cd45b64a1
2 changed files with 5 additions and 1 deletions
|
|
@ -19,7 +19,10 @@ import { useState, useEffect, useCallback, useRef } from "react";
|
|||
import { initClient, defaultHomeserver } from "../matrix-utils";
|
||||
|
||||
export function useInteractiveRegistration() {
|
||||
const [state, setState] = useState({ privacyPolicyUrl: "#", loading: false });
|
||||
const [state, setState] = useState({
|
||||
privacyPolicyUrl: null,
|
||||
loading: false,
|
||||
});
|
||||
|
||||
const authClientRef = useRef();
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue