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 - + ); }