Skip to content

Commit

Permalink
fix(Modal): remove unused className
Browse files Browse the repository at this point in the history
  • Loading branch information
FallOutChonny committed Aug 10, 2021
1 parent 70e5d5a commit 122c1b1
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions template/src/components/common/Modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ export default function ModalComponent({
...props
}: ModalProps) {
return (
<Modal
maskClosable={false}
keyboard={false}
className="header--no-underline"
{...props}>
<Modal maskClosable={false} keyboard={false} {...props}>
<Spin spinning={loadingData}>{children}</Spin>
</Modal>
)
Expand Down

0 comments on commit 122c1b1

Please sign in to comment.