Skip to content

Commit

Permalink
fix rebase conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
just-boris committed Nov 1, 2024
1 parent dbf7d20 commit c643c42
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/app-layout/runtime-drawer/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ import { sortByPriority } from '../../internal/plugins/helpers/utils';
import { AppLayoutProps } from '../interfaces';
import { ActiveDrawersContext } from '../utils/visibility-context';

import styles from './styles.css.js';

export interface DrawersLayout {
global: Array<AppLayoutProps.Drawer>;
localBefore: Array<AppLayoutProps.Drawer>;
Expand Down Expand Up @@ -46,7 +48,7 @@ function RuntimeDrawerWrapper({ mountContent, unmountContent, id }: RuntimeConte
visibilityChangeCallback.current?.(isVisible);
}, [isVisible]);

return <div ref={ref}></div>;
return <div ref={ref} className={styles['runtime-content-wrapper']}></div>;
}

const mapRuntimeConfigToDrawer = (
Expand Down
File renamed without changes.

0 comments on commit c643c42

Please sign in to comment.