Skip to content

Commit

Permalink
fix(dashboard): data visible from selector was not being passed to co…
Browse files Browse the repository at this point in the history
…mponent (#131)
  • Loading branch information
ayuhito authored Aug 30, 2024
1 parent 7c69c4b commit 45f169f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dashboard/app/components/layout/Flex.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ const Flex = ({ children, style }: FlexProps) => (
</div>
);

const Group = ({ children, style }: FlexProps) => (
<div className="group" style={style}>
const Group = ({ children, style, ...rest }: FlexProps) => (
<div className="group" style={style} {...rest}>
{children}
</div>
);
Expand Down
1 change: 0 additions & 1 deletion dashboard/app/styles/Button.css
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
@charset "UTF-8";
.button {
height: 40px;

Expand Down

0 comments on commit 45f169f

Please sign in to comment.