From 084ae8edfe49a5aa3c41eb6f82c6249c0c9b957d Mon Sep 17 00:00:00 2001 From: James Kiger Date: Tue, 14 Jan 2025 09:51:40 -0500 Subject: [PATCH] Lint --- jsapp/js/components/common/ActionIcon.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jsapp/js/components/common/ActionIcon.tsx b/jsapp/js/components/common/ActionIcon.tsx index 376fddd69c..8964fd6c6c 100644 --- a/jsapp/js/components/common/ActionIcon.tsx +++ b/jsapp/js/components/common/ActionIcon.tsx @@ -3,7 +3,7 @@ import { createPolymorphicComponent, } from '@mantine/core'; import type {ActionIconProps as ActionIconPropsMantine} from '@mantine/core/lib/components'; -import Icon, { IconSize} from './icon'; +import Icon, {IconSize} from './icon'; import type {IconName} from 'jsapp/fonts/k-icons'; import {forwardRef} from 'react'; @@ -14,7 +14,7 @@ export interface ActionIconProps extends Omit { const ActionIcon = forwardRef( ({iconName, ...props}, ref) => { - // Currently, our icon sizes only use a single letter instead of + // Currently, our icon sizes only use a single letter instead of // Mantine's 'sm', 'md', etc. So here we grab the first letter. const iconSize = props.size[0] as IconSize; return (