apply stashed change before merge bradley

This commit is contained in:
2025-09-10 09:05:47 +01:00
parent 4fd3bd4319
commit db49221a2b
8 changed files with 21 additions and 34 deletions

View File

@@ -6,7 +6,6 @@ import { toast } from "sonner";
const NPEDFields = () => {
const { signIn, user, signOut } = useNPEDAuth();
const initialValues = user
? {
username: user.propUsername.value,
@@ -28,7 +27,7 @@ const NPEDFields = () => {
...values,
};
signIn(valuesToSend);
toast.success("Signed in successfully");
toast.success("Signed into NPED Successfully");
};
const validateValues = (values: NPEDFieldType) => {
@@ -41,6 +40,7 @@ const NPEDFields = () => {
const handleLogoutClick = () => {
signOut();
toast.warning("logged out of NPED");
};
return (