File tree Expand file tree Collapse file tree 3 files changed +12
-13
lines changed Expand file tree Collapse file tree 3 files changed +12
-13
lines changed Original file line number Diff line number Diff line change 1
1
import reducer from '../app/src/redux/reducers/slice/appStateSlice' ;
2
2
import { State , Action } from '../app/src/interfaces/Interfaces' ;
3
-
4
3
import { initialState } from '../app/src/redux/reducers/slice/appStateSlice' ;
5
4
import { iterate } from 'localforage' ;
6
5
import { ConstructionOutlined } from '@mui/icons-material' ;
Original file line number Diff line number Diff line change @@ -172,9 +172,9 @@ const useStyles = makeStyles((theme) => ({
172
172
tabRoot : {
173
173
textTransform : 'initial' ,
174
174
minWidth : 40 ,
175
- fontWeight : theme . typography . fontWeightRegular ,
176
- marginRight : theme . spacing ( 2 ) , // JZ: updated syntax as per deprecation warning
177
- marginLeft : theme . spacing ( 2 ) ,
175
+ // fontWeight: theme.typography.fontWeightRegular,
176
+ // marginRight: theme.spacing(2), // JZ: updated syntax as per deprecation warning
177
+ // marginLeft: theme.spacing(2),
178
178
179
179
fontFamily : [
180
180
'-apple-system' ,
@@ -193,20 +193,20 @@ const useStyles = makeStyles((theme) => ({
193
193
opacity : 1
194
194
} ,
195
195
'&$tabSelected' : {
196
- color : 'white' ,
197
- fontWeight : theme . typography . fontWeightMedium
196
+ color : 'white'
197
+ // fontWeight: theme.typography.fontWeightMedium
198
198
} ,
199
199
'&:focus' : {
200
200
color : 'white'
201
201
}
202
202
} ,
203
203
tabSelected : { } ,
204
- typography : {
205
- padding : theme . spacing ( 3 )
206
- } ,
207
- padding : {
208
- padding : `0 ${ theme . spacing ( 2 ) } `
209
- } ,
204
+ // typography: {
205
+ // padding: theme.spacing(3)
206
+ // / / },
207
+ // padding: {
208
+ // padding: `0 ${theme.spacing(2)}`
209
+ // },
210
210
switch : {
211
211
marginRight : '10px' ,
212
212
marginTop : '2px'
Original file line number Diff line number Diff line change @@ -379,7 +379,7 @@ const appStateSlice = createSlice({
379
379
state . tailwind ,
380
380
action . payload . contextParam
381
381
) ;
382
- console . log ( 'addchild state before update' , current ( state ) ) ;
382
+ // console.log('addchild state before update', current(state));
383
383
state . components = components ;
384
384
state . nextChildId = nextChildId ;
385
385
state . canvasFocus = canvasFocus ;
You can’t perform that action at this time.
0 commit comments