diff --git a/frontend/src/app/components/alerts/Alert.jsx b/frontend/src/app/components/alerts/Alert.jsx index 7fc417d..dff3406 100644 --- a/frontend/src/app/components/alerts/Alert.jsx +++ b/frontend/src/app/components/alerts/Alert.jsx @@ -1,6 +1,8 @@ import React, { useState } from "react"; import styles from "./styles.module.css"; import BoxedCheckIcon from "../icons/boxedCheck"; +import SecondaryButton from "../buttons/secondaryButton/SecondaryButton"; +import PrimaryButton from "../buttons/primarybutton/PrimaryButton"; const Alert = (props) => { const [hide, setHide] = useState(false); const handleHide = () => { @@ -27,8 +29,8 @@ const Alert = (props) => {
{props?.buttonText}
-{props?.cancelButtonText}
+Save
{props.cancelButtonText}
-