- Startup logs exceeded the max size of{" "}
- 1MB, and will
- not continue to be written to the database. Logs will continue
- to be written to the{" "}
-
- /tmp/coder-startup-script.log
- {" "}
- file in the workspace.
-
-
-
-
+ Logs overflowed
+
+
+
+
+ Startup logs exceeded the max size of{" "}
+ 1MB, and will
+ not continue to be written to the database. Logs will continue
+ to be written to the{" "}
+
+ /tmp/coder-startup-script.log
+ {" "}
+ file in the workspace.
+
-
-
- This workspace template does not allow sharing ports publicly.
-
-
-
+
+
+ {/* Tooltips don't work directly on disabled MenuItem components so you must wrap in div. */}
+
+
+
+
+
+ This workspace template does not allow sharing ports publicly.
+
+
);
const disabledAuthenticatedMenuItem = (
-
-
-
- {/* Tooltips don't work directly on disabled MenuItem components so you must wrap in div. */}
-
-
-
-
-
- This workspace template does not allow sharing ports outside of its
- organization.
-
-
-
+
+
+ {/* Tooltips don't work directly on disabled MenuItem components so you must wrap in div. */}
+
+
+
+
+
+ This workspace template does not allow sharing ports outside of its
+ organization.
+
+
);
return (
@@ -338,19 +333,15 @@ export const PortForwardPopoverView: FC = ({
required
css={styles.newPortInput}
/>
-
-
-
-
-
-
- Connect to port
-
-
-
+
+
+
+
+ Connect to port
+
@@ -405,30 +396,28 @@ export const PortForwardPopoverView: FC = ({
alignItems="center"
>
{canSharePorts && (
-
-
-
-
-
-
- Share this port
-
-
-
+
+
+
+
+
+ Share this port
+
+
)}
diff --git a/site/src/modules/tasks/TaskPrompt/TaskPrompt.tsx b/site/src/modules/tasks/TaskPrompt/TaskPrompt.tsx
index 77e338cd47038..57a567b40366b 100644
--- a/site/src/modules/tasks/TaskPrompt/TaskPrompt.tsx
+++ b/site/src/modules/tasks/TaskPrompt/TaskPrompt.tsx
@@ -24,7 +24,6 @@ import { Spinner } from "components/Spinner/Spinner";
import {
Tooltip,
TooltipContent,
- TooltipProvider,
TooltipTrigger,
} from "components/Tooltip/Tooltip";
import { useAuthenticated } from "hooks/useAuthenticated";
@@ -414,23 +413,21 @@ const ExternalAuthButtons: FC = ({
{shouldRetry && !auth.authenticated && (
-
-
-
-
-
-
- Retry connecting to {auth.display_name}
-
-
-
+
+
+
+
+
+ Retry connecting to {auth.display_name}
+
+
)}
);
diff --git a/site/src/modules/workspaces/WorkspaceAppStatus/WorkspaceAppStatus.tsx b/site/src/modules/workspaces/WorkspaceAppStatus/WorkspaceAppStatus.tsx
index 633a9fcbc1ad8..405e8c11ea2d9 100644
--- a/site/src/modules/workspaces/WorkspaceAppStatus/WorkspaceAppStatus.tsx
+++ b/site/src/modules/workspaces/WorkspaceAppStatus/WorkspaceAppStatus.tsx
@@ -2,7 +2,6 @@ import type { WorkspaceAppStatus as APIWorkspaceAppStatus } from "api/typesGener
import {
Tooltip,
TooltipContent,
- TooltipProvider,
TooltipTrigger,
} from "components/Tooltip/Tooltip";
import capitalize from "lodash/capitalize";
@@ -28,23 +27,21 @@ export const WorkspaceAppStatus = ({
const message = status.message || capitalize(status.state);
return (
-
-
-
-
-
-
- {message}
-
-
-
- {message}
-
-
+
+
+
+
+
+ {message}
+
+
+
+ {message}
+
{status.state}
diff --git a/site/src/modules/workspaces/WorkspaceStatusIndicator/WorkspaceStatusIndicator.tsx b/site/src/modules/workspaces/WorkspaceStatusIndicator/WorkspaceStatusIndicator.tsx
index c7e9e53ba8ff5..d8eb82659fe40 100644
--- a/site/src/modules/workspaces/WorkspaceStatusIndicator/WorkspaceStatusIndicator.tsx
+++ b/site/src/modules/workspaces/WorkspaceStatusIndicator/WorkspaceStatusIndicator.tsx
@@ -7,7 +7,6 @@ import {
import {
Tooltip,
TooltipContent,
- TooltipProvider,
TooltipTrigger,
} from "components/Tooltip/Tooltip";
import type React from "react";
@@ -60,19 +59,17 @@ export const WorkspaceStatusIndicator: FC = ({
}
return (
-
-
-
-
-
- Workspace status: {text}
- {children}
-
-
-
- Your workspace is running but some agents are unhealthy.
-
-
-
+
+
+
+
+ Workspace status: {text}
+ {children}
+
+
+
+ Your workspace is running but some agents are unhealthy.
+
+
);
};
diff --git a/site/src/pages/CreateWorkspacePage/CreateWorkspacePageViewExperimental.tsx b/site/src/pages/CreateWorkspacePage/CreateWorkspacePageViewExperimental.tsx
index 315c8f357db29..94ccf3b980187 100644
--- a/site/src/pages/CreateWorkspacePage/CreateWorkspacePageViewExperimental.tsx
+++ b/site/src/pages/CreateWorkspacePage/CreateWorkspacePageViewExperimental.tsx
@@ -14,7 +14,6 @@ import { Switch } from "components/Switch/Switch";
import {
Tooltip,
TooltipContent,
- TooltipProvider,
TooltipTrigger,
} from "components/Tooltip/Tooltip";
import { UserAutocomplete } from "components/UserAutocomplete/UserAutocomplete";
@@ -386,26 +385,24 @@ export const CreateWorkspacePageViewExperimental: FC<