chore(ui): lint

This commit is contained in:
psychedelicious 2024-01-20 20:30:16 +11:00
parent e96ad41729
commit 850458a554
2 changed files with 2 additions and 2 deletions

View File

@ -39,7 +39,7 @@ const GalleryImage = (props: HoverableImageProps) => {
const dispatch = useAppDispatch();
const { imageName } = props;
const { currentData: imageDTO } = useGetImageDTOQuery(imageName);
const shift = useShiftModifier()
const shift = useShiftModifier();
const { t } = useTranslation();
const selectedBoardId = useAppSelector((s) => s.gallery.selectedBoardId);
const { handleClick, isSelected, areMultiplesSelected } =

View File

@ -57,7 +57,7 @@ const ClearSingleQueueItemIconButton = (props: ClearQueueButtonProps) => {
export const ClearQueueIconButton = (props: ClearQueueButtonProps) => {
// Show the single item clear button when shift is pressed
// Otherwise show the clear queue button
const shift = useShiftModifier()
const shift = useShiftModifier();
const disclosure = useDisclosure();
return (