Fix links
The href attribute was never actually being set.
This commit is contained in:
@@ -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();
|
||||
|
||||
|
||||
Reference in New Issue
Block a user