Skip to content

Commit 4966beb

Browse files
committed
fix: adapt import paths
* Remove now unused ipc channel * double check logger messages Signed-off-by: Dominikus Hellgartner <dominikus.hellgartner@tngtech.com>
1 parent 56e9c5c commit 4966beb

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Frontend/Components/FilePathInput/FilePathInput.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-FileCopyrightText: TNG Technology Consulting GmbH <https://www.tngtech.com>
33
//
44
// SPDX-License-Identifier: Apache-2.0
5-
import { AttachFile } from '@mui/icons-material';
5+
import AttachFileIcon from '@mui/icons-material/AttachFile';
66
import { TooltipProps } from '@mui/material/Tooltip';
77
import MuiTypography from '@mui/material/Typography';
88

@@ -33,7 +33,7 @@ export const FilePathInput: React.FC<FilePathInputProps> = (props) => {
3333
title={props.label}
3434
text={props.text}
3535
onClick={props.onClick}
36-
startIcon={<AttachFile sx={baseIcon} />}
36+
startIcon={<AttachFileIcon sx={baseIcon} />}
3737
cursor={'pointer'}
3838
showTooltip={true}
3939
tooltipProps={props.tooltipProps}

src/Frontend/Components/ProjectStatisticsPopup/ProjectStatisticsPopup.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
// SPDX-FileCopyrightText: TNG Technology Consulting GmbH <https://www.tngtech.com>
33
//
44
// SPDX-License-Identifier: Apache-2.0
5-
import { createTheme, Grid2 as MuiGrid, useTheme } from '@mui/material';
5+
import { createTheme, Grid as MuiGrid, useTheme } from '@mui/material';
66
import { ThemeProvider } from '@mui/material/styles';
77
import MuiTab from '@mui/material/Tab';
88
import MuiTabs from '@mui/material/Tabs';

0 commit comments

Comments
 (0)