Skip to content

Commit 8cbb527

Browse files
committed
fixup! fix(site): WorkspaceProxyPage: show wsproxy errors in context
1 parent becd3f9 commit 8cbb527

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/HealthPage/WorkspaceProxyPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ export const WorkspaceProxyPage = () => {
3939
</Header>
4040

4141
<Main>
42-
{workspace_proxy.error !== null ? (
42+
{workspace_proxy.error ? (
4343
<Alert severity="error">{workspace_proxy.error}</Alert>
4444
) : null}
4545
{workspace_proxy.warnings.map((warning) => {

0 commit comments

Comments
 (0)