Skip to content

Commit

Permalink
fix: abq export issue
Browse files Browse the repository at this point in the history
Signed-off-by: hxtree <[email protected]>
  • Loading branch information
hxtree committed Dec 5, 2023
1 parent 288a534 commit e1ffd2d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions services/admin-client/components/Layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ import {
faDice,
faAddressCard,
IconButton,
AppBarProps as MuiAppBarProps,
AppBar as MuiAppBar,
useTheme,
faChevronCircleRight,
Expand Down Expand Up @@ -51,7 +50,8 @@ const Main = styled('main', { shouldForwardProp: prop => prop !== 'open' })<{
}),
}));

interface AppBarProps extends MuiAppBarProps {
// TODO extend MuiAppBarProps
interface AppBarProps {
open?: boolean;
}

Expand Down
10 changes: 9 additions & 1 deletion services/design-system/src/Mui/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,15 @@ export * from './Link';
export * from './Layout';
export * from './Alert';

export type SelectChangeEvent<T = string> =
| (Event & {
target: {
value: T;
name: string;
};
})
| React.ChangeEvent<HTMLInputElement>;

export {
Drawer,
CssBaseline,
Expand All @@ -28,7 +37,6 @@ export {
Grid,
Stack,
Container,
// SelectChangeEvent,
OutlinedInput,
MenuItem,
ListItemIcon,
Expand Down

0 comments on commit e1ffd2d

Please sign in to comment.