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

Commit

Permalink
Merge branch 't3chguy/cache-settings-localstorage' of github.com:matr…
Browse files Browse the repository at this point in the history
…ix-org/matrix-react-sdk into t3chguy/cache-settings-localstorage
  • Loading branch information
t3chguy committed Apr 19, 2022
2 parents d190334 + 73edd13 commit 71b0f6f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/views/dialogs/devtools/ServerInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,13 +74,13 @@ const ServerInfo = ({ onBack }: IDevtoolsProps) => {
}

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

<h4>{ _t("Server Versions") }</h4>
{ capabilities !== FAILED_TO_LOAD
{ serverVersions !== FAILED_TO_LOAD
? <SyntaxHighlight language="json" children={JSON.stringify(serverVersions, null, 4)} />
: <div>{ _t("Failed to load.") }</div>
}
Expand Down
2 changes: 1 addition & 1 deletion test/end-to-end-tests/src/usecases/threads.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ export async function redactThreadMessage(session: ElementSession): Promise<void
session.log.done();

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

session.log.endGroup();
}
Expand Down

0 comments on commit 71b0f6f

Please sign in to comment.