From d058f08c4795462689112c47e0518ea2c095a1bc Mon Sep 17 00:00:00 2001 From: David Baker Date: Wed, 11 Oct 2023 16:25:47 +0100 Subject: [PATCH] Prettier --- src/e2ee/sharedKeyManagement.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/e2ee/sharedKeyManagement.ts b/src/e2ee/sharedKeyManagement.ts index e8e75b55..8d4dc83e 100644 --- a/src/e2ee/sharedKeyManagement.ts +++ b/src/e2ee/sharedKeyManagement.ts @@ -51,7 +51,7 @@ const useKeyFromUrl = (): [string, string] | [undefined, undefined] => { // make sure, we always have matching pairs in the LocalStorage, // as they occur in the call links. getRoomSharedKeyLocalStorageKey(urlParams.roomId), - urlParams.password + urlParams.password, ); }, [urlParams]); @@ -82,6 +82,6 @@ export const useIsRoomE2EE = (roomId: string): boolean | null => { // should inspect the e2eEnabled URL parameter here? return useMemo( () => widget === null && (room === null || !room.getCanonicalAlias()), - [room] + [room], ); };