From aa5e4f4123258fcb87fe4bdb13e3d77e6e7c7269 Mon Sep 17 00:00:00 2001 From: Dany Khalife Date: Mon, 22 Jun 2026 04:59:33 -0700 Subject: [PATCH] Use icon barrel import in LabelView to fix tsc declaration errors --- frontend/src/views/Labels/LabelView.tsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/frontend/src/views/Labels/LabelView.tsx b/frontend/src/views/Labels/LabelView.tsx index cf310596..af8d6b5e 100644 --- a/frontend/src/views/Labels/LabelView.tsx +++ b/frontend/src/views/Labels/LabelView.tsx @@ -1,6 +1,6 @@ import { Label } from '@/models/label' import { colorOptionFromColor, getTextColorFromBackgroundColor } from '@/utils/colors' -import { Add } from '@mui/icons-material' +import { Add, Delete as DeleteIcon, Edit as EditIcon } from '@mui/icons-material' import { Box, CircularProgress, @@ -12,8 +12,6 @@ import { } from '@mui/joy' import React from 'react' import { LabelModal } from '../Modals/Inputs/LabelModal' -import DeleteIcon from '@mui/icons-material/Delete' -import EditIcon from '@mui/icons-material/Edit' import { setTitle } from '@/utils/dom' import { ConfirmationModal } from '../Modals/Inputs/ConfirmationModal' import { AppDispatch, RootState } from '@/store/store'