diff --git a/src/components/atoms/ConfirmationBox.tsx b/src/components/atoms/ConfirmationBox.tsx index 8048dad4..bd967f85 100644 --- a/src/components/atoms/ConfirmationBox.tsx +++ b/src/components/atoms/ConfirmationBox.tsx @@ -3,22 +3,22 @@ import styled from 'styled-components'; import { Box, Button, IconButton, Stack, Typography } from "@mui/material"; interface ConfirmationBoxProps { - selector: string; - onClose: () => void; + selector: string; + onClose: () => void; } const ConfirmationBox = ({ selector, onClose }: ConfirmationBoxProps) => { - return ( - - - Do you want to proceed? - - - Selector: {selector} -
{selector}
-
-
- ); + return ( + + + Do you want to proceed? + + + Selector: {selector} +
{selector}
+
+
+ ); }; const ConfirmationBoxContainer = styled.div`