remove white space changes

This commit is contained in:
Aman Regu 2024-11-19 05:30:26 +05:30
parent 95ce4125ca
commit 870fe52531
3 changed files with 8 additions and 9 deletions

View file

@ -99,7 +99,7 @@ export const Tabs = function Tabs({
const tabId = Number(id);
setCurrentTab(tabId);
setExposedVariable('currentTab', tabId);
fireEvent('onTabSwitch');
fireEvent('onTabSwitch')
}
},
currentTab: currentTab,
@ -216,4 +216,4 @@ export const Tabs = function Tabs({
))}
</div>
);
};
};

View file

@ -462,8 +462,8 @@ export const Inspector = ({
componentMeta.displayName === 'Toggle Switch (Legacy)'
? 'Toggle (Legacy)'
: componentMeta.displayName === 'Toggle Switch'
? 'Toggle Switch'
: componentMeta.component,
? 'Toggle Switch'
: componentMeta.component,
})}
</small>
</span>
@ -644,4 +644,4 @@ const GetAccordion = React.memo(
}
);
Inspector.RenderStyleOptions = RenderStyleOptions;
Inspector.RenderStyleOptions = RenderStyleOptions;

View file

@ -110,9 +110,8 @@ export const LeftSidebarInspector = ({
if (!_.isEmpty(component) && component.name === key) {
return {
iconName: key,
iconPath: `assets/images/icons/widgets/${
component.component.toLowerCase() === 'radiobutton' ? 'radio-button' : component.component.toLowerCase()
}.svg`,
iconPath: `assets/images/icons/widgets/${component.component.toLowerCase() === 'radiobutton' ? 'radio-button' : component.component.toLowerCase()
}.svg`,
className: 'component-icon',
};
}
@ -312,4 +311,4 @@ export const LeftSidebarInspector = ({
</div>
</div>
);
};
};