Compare commits

..

4 Commits

Author SHA1 Message Date
victorAnumudu d12a1fd579 fixed error message display 2023-11-21 15:04:22 +01:00
ameye 235bb7d667 Merge branch 'wallet-reload' of WrenchBoard/Users-Wrench into master 2023-11-21 11:25:59 +00:00
ameye 18a319a437 Merge branch 'Server-path-added' of WrenchBoard/Users-Wrench into master 2023-11-21 11:25:54 +00:00
Chief Bube 7cb5cc558b added box 2023-11-12 12:55:13 -08:00
2 changed files with 10 additions and 5 deletions
@@ -94,11 +94,11 @@ const AssignTaskPopout = React.memo(
const requiredFields = {
banner,
// category,
country,
currency:country,
description,
job_detail,
'job detail':job_detail,
price,
timeline_days,
timeline:timeline_days,
title,
};
@@ -108,7 +108,7 @@ const AssignTaskPopout = React.memo(
setRequestStatus({
loading: false,
status: false,
message: `${field} is empty`,
message: `${field[0].toUpperCase()+field.slice(1).toLowerCase()} is empty`,
});
return setTimeout(() => {
setRequestStatus({ loading: false, status: false, message: "" });
@@ -1,5 +1,6 @@
import React from "react";
import Layout from "../../Partials/Layout";
import { Link } from "react-router-dom";
const FamilySettings = () => {
return (
@@ -13,9 +14,13 @@ const FamilySettings = () => {
<span className={``}>Family Settings</span>
</h1>
</div>
<div></div>
<Link to="/acc-family">Go Back</Link>
</div>
{/* Something Here */}
{/* <form className="logout-modal-body w-full flex flex-col items-center px-10 py-8 gap-4"></form> */}
<div className="w-full bg-white dark:bg-dark-white overflow-y-auto rounded-2xl section-shadow h-full ">
<div className="update-table w-full h-full p-4 bg-white dark:bg-dark-white overflow-y-auto rounded-2xl section-shadow min-h-[520px] flex flex-col justify-between "></div>
</div>
</div>
</div>
</Layout>