Skip to content

Commit

Permalink
Move div inside Tabs to be consistent with tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
mlqn committed Mar 3, 2025
1 parent a50ff15 commit cda89ca
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
4 changes: 2 additions & 2 deletions frontend/packages/ux-editor/src/components/Tabs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ export const Tabs = (): ReactElement => {
const { t } = useTranslation();

return (
<>
<div>
<StudioHeading level={2} size='xsmall' className={classes.heading}>
{t('ux_editor.settings.other_settings')}
</StudioHeading>
Expand All @@ -37,6 +37,6 @@ export const Tabs = (): ReactElement => {
})}
</StudioTabs.List>
</StudioTabs>
</>
</div>
);
};
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,7 @@ export const FormDesignerNavigation = () => {
<div className={classes.panel}>
<div className={classes.content}>
<div className={classes.header}>{appConfigData?.serviceName}</div>
<div>
<Tabs />
</div>
<Tabs />
</div>
<footer className={classes.footer}>
<Link href='/contact'>{t('general.contact')}</Link>
Expand Down

0 comments on commit cda89ca

Please sign in to comment.