Skip to content

Commit

Permalink
removed some unused imports
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelPesce committed Jul 11, 2023
1 parent 81307fb commit cb2b1b8
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions electron/ui/src/components/Sidebar/Sidebar.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
import React, {Fragment, useState} from 'react';
import { Box, Drawer, CssBaseline, Collapse, Divider, Tooltip, IconButton } from '@mui/material'
import { List, ListItem, ListItemButton, ListItemText } from '@mui/material'
import React, {useState} from 'react';
import { Box, Drawer, CssBaseline, Collapse, Tooltip, IconButton } from '@mui/material'
import ExpandLess from '@mui/icons-material/ExpandLess';
import ExpandMore from '@mui/icons-material/ExpandMore';
import ParetoDictionary from '../../assets/ParetoDictionary.json'
Expand Down Expand Up @@ -81,7 +80,7 @@ export default function Sidebar(props) {
}

const handleClick = (key) => {
// console.log(scenario)
// console.log(key)
setKey(key)
if (inputDataEdited) {
handleOpenSaveModal()
Expand Down

0 comments on commit cb2b1b8

Please sign in to comment.