Skip to content

Commit ed5bf98

Browse files
committed
Revert "refactor: rename Tooltip to MUITooltip"
This reverts commit c93e092.
1 parent 2ff9e66 commit ed5bf98

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 MUITooltip from "@mui/material/Tooltip";
3+
import Tooltip 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";
@@ -108,11 +108,11 @@ export const WorkspaceTopbar: FC<WorkspaceProps> = ({
108108

109109
return (
110110
<Topbar css={{ gridArea: "topbar" }}>
111-
<MUITooltip title="Back to workspaces">
111+
<Tooltip title="Back to workspaces">
112112
<TopbarIconButton component={RouterLink} to="/workspaces">
113113
<ChevronLeftIcon className="size-icon-sm" />
114114
</TopbarIconButton>
115-
</MUITooltip>
115+
</Tooltip>
116116

117117
<div css={styles.topbarLeft}>
118118
<TopbarData>

0 commit comments

Comments
 (0)