Skip to content

Commit 1fd1c65

Browse files
authored
fix: hide empty update message box (coder#9784)
1 parent eda3265 commit 1fd1c65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -247,7 +247,7 @@ export const WorkspaceReadyPage = ({
247247
Restarting your workspace will stop all running processes and{" "}
248248
<strong>delete non-persistent data</strong>.
249249
</p>
250-
{latestVersion && (
250+
{latestVersion?.message && (
251251
<Alert severity="info">{latestVersion.message}</Alert>
252252
)}
253253
</Stack>

0 commit comments

Comments
 (0)