Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
fix: hide empty update message box
  • Loading branch information
aslilac committed Sep 19, 2023
commit 133ed6cdf4ce11f29a965d07722d5512e2389323
2 changes: 1 addition & 1 deletion site/src/pages/WorkspacePage/WorkspaceReadyPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export const WorkspaceReadyPage = ({
Restarting your workspace will stop all running processes and{" "}
<strong>delete non-persistent data</strong>.
</p>
{latestVersion && (
{latestVersion?.message && (
<Alert severity="info">{latestVersion.message}</Alert>
)}
</Stack>
Expand Down