Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit b6f38d3

Browse files
authored
Merge pull request #229 from utkarsha-deriv/utkarsha/cancel-btn-fix
2 parents 28883de + af2297b commit b6f38d3

File tree

1 file changed

+10
-1
lines changed
  • src/features/dashboard/components/Dialogs/UpdateAppDialog

1 file changed

+10
-1
lines changed

src/features/dashboard/components/Dialogs/UpdateAppDialog/index.tsx

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,16 @@ const UpdateAppDialog = ({ app, onClose }: IUpdateAppDialog) => {
7474
);
7575

7676
const cancelButton = () => {
77-
return <Button onClick={onClose}>Cancel</Button>;
77+
return (
78+
<Button
79+
onClick={onClose}
80+
style={{
81+
borderRadius: '0.935rem',
82+
}}
83+
>
84+
Cancel
85+
</Button>
86+
);
7887
};
7988

8089
return (

0 commit comments

Comments
 (0)