From 8b6db5d5237bd1bec5da54eec474a6deb6558d4d Mon Sep 17 00:00:00 2001 From: Jay Wu Date: Mon, 30 Dec 2024 02:08:53 -0800 Subject: [PATCH] fix: remove box messing with tooltip offset (#1094) --- apps/antalmanac/src/components/buttons/Copy.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/apps/antalmanac/src/components/buttons/Copy.tsx b/apps/antalmanac/src/components/buttons/Copy.tsx index 79ae91bd6..7f68c13e8 100644 --- a/apps/antalmanac/src/components/buttons/Copy.tsx +++ b/apps/antalmanac/src/components/buttons/Copy.tsx @@ -1,5 +1,5 @@ import { ContentCopy } from '@mui/icons-material'; -import { Box, IconButton, SxProps, Tooltip } from '@mui/material'; +import { IconButton, SxProps, Tooltip } from '@mui/material'; import { useCallback, useState } from 'react'; import CopyScheduleDialog from '$components/dialogs/CopySchedule'; @@ -22,7 +22,7 @@ export function CopyScheduleButton({ index, disabled, buttonSx }: CopyScheduleBu }, []); return ( - + <> @@ -31,6 +31,6 @@ export function CopyScheduleButton({ index, disabled, buttonSx }: CopyScheduleBu - + ); }