removed SodistoreMax Calibration Discharge Configuration from frontend

This commit is contained in:
Yinyin Liu 2025-11-13 14:19:10 +01:00
parent 15201ecccb
commit 1f78a4dfea
1 changed files with 26 additions and 26 deletions

View File

@ -404,32 +404,32 @@ function Configuration(props: ConfigurationProps) {
}
})}
/>
{product === 3 && (
<Tab
value="discharge"
label="Calibration Discharge"
sx={(theme) => ({
flex: 2,
fontWeight: 'bold',
borderRadius: 2,
textTransform: 'none',
color:
activeTab === 'discharge'
? 'white'
: theme.palette.text.primary,
bgcolor:
activeTab === 'discharge'
? theme.palette.primary.main
: 'transparent',
'&:hover': {
bgcolor:
activeTab === 'discharge'
? theme.palette.primary.dark
: '#eee'
}
})}
/>
)}
{/*{product === 3 && (*/}
{/* <Tab*/}
{/* value="discharge"*/}
{/* label="Calibration Discharge"*/}
{/* sx={(theme) => ({*/}
{/* flex: 2,*/}
{/* fontWeight: 'bold',*/}
{/* borderRadius: 2,*/}
{/* textTransform: 'none',*/}
{/* color:*/}
{/* activeTab === 'discharge'*/}
{/* ? 'white'*/}
{/* : theme.palette.text.primary,*/}
{/* bgcolor:*/}
{/* activeTab === 'discharge'*/}
{/* ? theme.palette.primary.main*/}
{/* : 'transparent',*/}
{/* '&:hover': {*/}
{/* bgcolor:*/}
{/* activeTab === 'discharge'*/}
{/* ? theme.palette.primary.dark*/}
{/* : '#eee'*/}
{/* }*/}
{/* })}*/}
{/* />*/}
{/*)}*/}
</Tabs>
</Box>