From 68128c52e5f84a1c3b204415c8b22e2ce8886e09 Mon Sep 17 00:00:00 2001 From: Mo Tarbin Date: Tue, 31 Dec 2024 02:25:31 -0500 Subject: [PATCH] Fix import for LabelView --- src/views/Labels/LabelView.jsx | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/src/views/Labels/LabelView.jsx b/src/views/Labels/LabelView.jsx index 0f72634..4bc83fb 100644 --- a/src/views/Labels/LabelView.jsx +++ b/src/views/Labels/LabelView.jsx @@ -17,8 +17,8 @@ import { useLabels } from './LabelQueries' import { Add } from '@mui/icons-material' import { useQueryClient } from 'react-query' import { useNavigate } from 'react-router-dom' +import { getTextColorFromBackgroundColor } from '../../utils/Colors' import { DeleteLabel } from '../../utils/Fetcher' -import { getTextColorFromBackgroundColor } from '../../utils/LabelColors' import ConfirmationModal from '../Modals/Inputs/ConfirmationModal' const LabelView = () => { @@ -134,7 +134,6 @@ const LabelView = () => { color='neutral' onClick={() => handleEditLabel(label)} startDecorator={} - > Edit @@ -151,7 +150,6 @@ const LabelView = () => { ))} - {userLabels.length === 0 && ( No labels available. Add a new label to get started.