Skip to content

Commit

Permalink
fix: dialog type issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mikededo committed Aug 13, 2023
1 parent 5e9bb28 commit ff089c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/aero/dialog/dialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ type Props = {
};

export const Dialog: RequiredChildrenFC<Props> = ({ show, children, blur }) => (
<AppearTransition show={show}>
<AppearTransition show={!!show}>
<div
className={twMerge(
'fixed bg-gray-700/30 inset-0 z-40 overflow-auto',
Expand Down

0 comments on commit ff089c1

Please sign in to comment.