fix: hide empty update message box (#9784)

This commit is contained in:
Kayla Washburn
2023-09-19 13:11:22 -06:00
committed by GitHub
parent eda32659a8
commit 1fd1c654a9
@@ -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>