11import { useCallback , useEffect , useState } from "react"
22
33import "./App.css"
4- import { RestartAlt , Settings , SportsFootball , Texture } from "@mui/icons-material"
4+ import { RestartAlt , Settings , SportsFootball } from "@mui/icons-material"
55import DownloadIcon from "@mui/icons-material/Download"
66import PrecisionManufacturingIcon from "@mui/icons-material/PrecisionManufacturing"
77import SaveIcon from "@mui/icons-material/Save"
@@ -36,7 +36,7 @@ import GamepiecesConfigTab from "./ui/GamepiecesConfigTab.tsx"
3636import GeneralConfigTab from "./ui/GeneralConfigTab.tsx"
3737import GlobalAlert from "./ui/GlobalAlert.tsx"
3838import JointsConfigTab from "./ui/JointsConfigTab.tsx"
39- import MaterialTaggingTab , { type TaggedBody } from "./ui/MaterialTaggingTab.tsx"
39+ import type { TaggedBody } from "./ui/MaterialTaggingTab.tsx"
4040
4141function TabPanel ( props : { children ?: React . ReactNode ; value : number ; index : number } ) {
4242 const { children, value, index, ...other } = props
@@ -179,7 +179,11 @@ function App() {
179179 return (
180180 < ThemeProvider theme = { theme } >
181181 < Backdrop
182- sx = { theme => ( { color : "#fff" , zIndex : theme . zIndex . drawer + 1 , backdropFilter : "blur(0px)" } ) }
182+ sx = { theme => ( {
183+ color : "#fff" ,
184+ zIndex : theme . zIndex . drawer + 1 ,
185+ backdropFilter : "blur(0px)" ,
186+ } ) }
183187 open = { isSelecting }
184188 onClick = { ( ) => {
185189 Global_SetAlert (
@@ -227,7 +231,7 @@ function App() {
227231 disabled = { generalConfig . exportMode === ExportMode . ROBOT }
228232 />
229233
230- < Tab icon = { < Texture /> } iconPosition = { "start" } label = "Materials" />
234+ { /* <Tab icon={<Texture />} iconPosition={"start"} label="Materials" />*/ }
231235
232236 { /*<Tab label="APS" />*/ }
233237 </ Tabs >
@@ -252,13 +256,13 @@ function App() {
252256 selection = { { isSelecting, setIsSelecting } }
253257 />
254258 </ TabPanel >
255- < TabPanel value = { activeTab } index = { 3 } >
256- < MaterialTaggingTab
257- tags = { taggedBodies }
258- updateTags = { updateTaggedBodies }
259- selection = { { isSelecting, setIsSelecting } }
260- />
261- </ TabPanel >
259+ { /* <TabPanel value={activeTab} index={3}>*/ }
260+ { /* <MaterialTaggingTab*/ }
261+ { /* tags={taggedBodies}*/ }
262+ { /* updateTags={updateTaggedBodies}*/ }
263+ { /* selection={{ isSelecting, setIsSelecting }}*/ }
264+ { /* />*/ }
265+ { /* </TabPanel>*/ }
262266 < Container
263267 sx = { {
264268 position : "sticky" ,
0 commit comments