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

Commit af2297b

Browse files
style: fix cancel btn radius
1 parent 3ae0058 commit af2297b

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)