Skip to content

Commit c93e092

Browse files
committed
refactor: rename Tooltip to MUITooltip
1 parent eaf3baf commit c93e092

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

site/src/pages/WorkspacePage/WorkspaceTopbar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import { type Interpolation, type Theme, useTheme } from "@emotion/react";
22
import Link from "@mui/material/Link";
3-
import Tooltip from "@mui/material/Tooltip";
3+
import MUITooltip from "@mui/material/Tooltip";
44
import { workspaceQuota } from "api/queries/workspaceQuota";
55
import type * as TypesGen from "api/typesGenerated";
66
import { Avatar } from "components/Avatar/Avatar";
@@ -105,11 +105,11 @@ export const WorkspaceTopbar: FC<WorkspaceProps> = ({
105105

106106
return (
107107
<Topbar css={{ gridArea: "topbar" }}>
108-
<Tooltip title="Back to workspaces">
108+
<MUITooltip title="Back to workspaces">
109109
<TopbarIconButton component={RouterLink} to="/workspaces">
110110
<ChevronLeftIcon className="size-icon-sm" />
111111
</TopbarIconButton>
112-
</Tooltip>
112+
</MUITooltip>
113113

114114
<div css={styles.topbarLeft}>
115115
<TopbarData>

0 commit comments

Comments
 (0)