From 41184ee7161445fc27f1cb1e219f59084fbc0a38 Mon Sep 17 00:00:00 2001 From: Laux Dev <2201104208@student.buksu.edu.ph> Date: Tue, 3 Mar 2026 15:23:58 +0800 Subject: [PATCH] Fixed --- frontend/src/app/components/alerts/Alert.jsx | 6 ++- .../app/components/alerts/styles.module.css | 24 +--------- .../buttons/primarybutton/styles.module.css | 1 - .../secondaryButton/SecondaryButton.jsx | 11 +++++ .../buttons/secondaryButton/styles.module.css | 25 +++++++++++ .../src/app/components/fields/textfield.jsx | 9 +++- .../app/components/select/styles.module.css | 2 +- .../app/components/topHeader/TopHeader.jsx | 45 +++++++++++-------- frontend/src/app/organization/add/page.jsx | 2 +- 9 files changed, 77 insertions(+), 48 deletions(-) create mode 100644 frontend/src/app/components/buttons/secondaryButton/SecondaryButton.jsx create mode 100644 frontend/src/app/components/buttons/secondaryButton/styles.module.css 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}
-