Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Fix fmt
  • Loading branch information
BrunoQuaresma committed Aug 22, 2024
commit 594c810ee4f01ff64d24a0aaa7ea8a05fc43a19d
10 changes: 8 additions & 2 deletions site/src/components/HelpTooltip/HelpTooltip.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,10 @@
import { type CSSObject, type Interpolation, type Theme, css, useTheme } from "@emotion/react";
import {
type CSSObject,
type Interpolation,
type Theme,
css,
useTheme,
} from "@emotion/react";
import HelpIcon from "@mui/icons-material/HelpOutline";
import OpenInNewIcon from "@mui/icons-material/OpenInNew";
import Link from "@mui/material/Link";
Expand Down Expand Up @@ -154,7 +160,7 @@ export const HelpTooltipAction: FC<HelpTooltipActionProps> = ({

return (
<button
type="button"
type="button"
aria-label={ariaLabel ?? ""}
css={styles.action}
onClick={(event) => {
Expand Down
Loading