File tree Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Expand file tree Collapse file tree 2 files changed +4
-12
lines changed Original file line number Diff line number Diff line change @@ -57,6 +57,7 @@ import {
57
57
DeleteContextPayload ,
58
58
addComponentToContext
59
59
} from '../../../src/redux/reducers/slice/contextReducer' ;
60
+ import Canvas from '../../components/main/Canvas' ;
60
61
61
62
// // for websockets
62
63
// // Part - join room and room code functionality
@@ -183,7 +184,7 @@ const RoomsContainer = () => {
183
184
// console.log('CSS data received from server', cssData);
184
185
store . dispatch ( updateStylesheet ( cssData ) ) ;
185
186
} ) ;
186
-
187
+
187
188
socket . on (
188
189
'item position data from server' ,
189
190
( itemPositionData : object ) => {
Original file line number Diff line number Diff line change @@ -585,16 +585,7 @@ const CustomizationPanel = ({ isThemeLight }): JSX.Element => {
585
585
? ' component'
586
586
: ' element' } { ' ' }
587
587
< br />
588
- < br />
589
- < span
590
- className = {
591
- isThemeLight
592
- ? `${ classes . compName } ${ classes . lightThemeFontColor } `
593
- : `${ classes . compName } ${ classes . darkThemeFontColor } `
594
- }
595
- >
596
588
{ configTarget . child . name }
597
- </ span >
598
589
</ h4 >
599
590
</ div >
600
591
< section className = { 'customization-section' } >
@@ -891,7 +882,7 @@ const CustomizationPanel = ({ isThemeLight }): JSX.Element => {
891
882
SAVE
892
883
</ Button >
893
884
</ div >
894
- < div className = { classes . buttonRow } >
885
+ { /* <div className={classes.buttonRow}>
895
886
<Button
896
887
variant="contained"
897
888
color="primary"
@@ -926,7 +917,7 @@ const CustomizationPanel = ({ isThemeLight }): JSX.Element => {
926
917
>
927
918
Tailwind
928
919
</Button>
929
- </ div >
920
+ </div> */ }
930
921
{ configTarget . child ? (
931
922
< div className = { classes . buttonRow } >
932
923
< Button
You can’t perform that action at this time.
0 commit comments