Skip to content
This repository was archived by the owner on Sep 11, 2024. It is now read-only.

Commit 71b0f6f

Browse files
committed
Merge branch 't3chguy/cache-settings-localstorage' of github.com:matrix-org/matrix-react-sdk into t3chguy/cache-settings-localstorage
2 parents d190334 + 73edd13 commit 71b0f6f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/views/dialogs/devtools/ServerInfo.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ const ServerInfo = ({ onBack }: IDevtoolsProps) => {
7474
}
7575

7676
<h4>{ _t("Client Versions") }</h4>
77-
{ capabilities !== FAILED_TO_LOAD
77+
{ clientVersions !== FAILED_TO_LOAD
7878
? <SyntaxHighlight language="json" children={JSON.stringify(clientVersions, null, 4)} />
7979
: <div>{ _t("Failed to load.") }</div>
8080
}
8181

8282
<h4>{ _t("Server Versions") }</h4>
83-
{ capabilities !== FAILED_TO_LOAD
83+
{ serverVersions !== FAILED_TO_LOAD
8484
? <SyntaxHighlight language="json" children={JSON.stringify(serverVersions, null, 4)} />
8585
: <div>{ _t("Failed to load.") }</div>
8686
}

test/end-to-end-tests/src/usecases/threads.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ export async function redactThreadMessage(session: ElementSession): Promise<void
9292
session.log.done();
9393

9494
await session.query(".mx_ThreadView .mx_RedactedBody");
95-
await session.delay(200); // give the app a chance to settle
95+
await session.delay(1000); // give the app a chance to settle
9696

9797
session.log.endGroup();
9898
}

0 commit comments

Comments
 (0)