Skip to content

Commit

Permalink
refactor: Remove pointless classNames call (react-bootstrap#4662)
Browse files Browse the repository at this point in the history
  • Loading branch information
taion authored Oct 11, 2019
1 parent 1f9fb1f commit b30a10a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ModalDialog.js
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ const ModalDialog = React.forwardRef(
scrollable && `${dialogClass}-scrollable`,
)}
>
<div className={classNames(`${bsPrefix}-content`)}>{children}</div>
<div className={`${bsPrefix}-content`}>{children}</div>
</div>
);
},
Expand Down

0 comments on commit b30a10a

Please sign in to comment.