Fix types
This commit is contained in:
parent
004160b664
commit
81771f511c
5 changed files with 8 additions and 6 deletions
|
|
@ -29,7 +29,7 @@ export const useInteractiveLogin = () =>
|
|||
password: string
|
||||
) => Promise<[MatrixClient, Session]>
|
||||
>(async (homeserver: string, username: string, password: string) => {
|
||||
const authClient = createClient(homeserver);
|
||||
const authClient = createClient({ baseUrl: homeserver });
|
||||
|
||||
const interactiveAuth = new InteractiveAuth({
|
||||
matrixClient: authClient,
|
||||
|
|
|
|||
|
|
@ -37,7 +37,7 @@ export const useInteractiveRegistration = (): [
|
|||
|
||||
const authClient = useRef<MatrixClient>();
|
||||
if (!authClient.current) {
|
||||
authClient.current = createClient(defaultHomeserver);
|
||||
authClient.current = createClient({ baseUrl: defaultHomeserver });
|
||||
}
|
||||
|
||||
useEffect(() => {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue