diff --git a/site/src/utils/workspace.tsx b/site/src/utils/workspace.tsx
index f7e98772e1344..35a57c8ad680b 100644
--- a/site/src/utils/workspace.tsx
+++ b/site/src/utils/workspace.tsx
@@ -191,13 +191,13 @@ export const getDisplayWorkspaceStatus = (
} as const;
case "stopping":
return {
- type: "notice",
+ type: "inactive",
text: "Stopping",
icon: ,
} as const;
case "stopped":
return {
- type: "notice",
+ type: "inactive",
text: "Stopped",
icon: ,
} as const;
@@ -215,13 +215,13 @@ export const getDisplayWorkspaceStatus = (
} as const;
case "canceling":
return {
- type: "notice",
+ type: "inactive",
text: "Canceling",
icon: ,
} as const;
case "canceled":
return {
- type: "notice",
+ type: "inactive",
text: "Canceled",
icon: ,
} as const;
@@ -233,7 +233,7 @@ export const getDisplayWorkspaceStatus = (
} as const;
case "pending":
return {
- type: "info",
+ type: "active",
text: getPendingWorkspaceStatusText(provisionerJob),
icon: ,
} as const;