Compare commits

..

4 Commits

Author SHA1 Message Date
victorAnumudu 18967d720c link path corrected 2024-05-06 12:27:16 +01:00
ameye 044b2ef917 Merge branch 'bug-fix' of DigiFi/digifi-www into master 2024-05-03 16:59:47 +00:00
ameye 4f7fdfb2ba Merge branch 'agent-id' of DigiFi/digifi-www into master 2024-05-03 16:59:43 +00:00
victorAnumudu 29538e3b6e made agent id optional 2024-05-02 10:09:36 +01:00
2 changed files with 1 additions and 2 deletions
@@ -25,7 +25,6 @@ const validationSchema = Yup.object().shape({
return true; return true;
}), }),
sales_agent: Yup.string() sales_agent: Yup.string()
.required("Required")
}); });
export default function DashboardFormInit({handleNextStep}:Props) { export default function DashboardFormInit({handleNextStep}:Props) {
+1 -1
View File
@@ -52,7 +52,7 @@ const Header: React.FC<HiddenMenuItems> = ({
<div className="flex flex-col-reverse lg:flex-col grow lg:grow-0 justify-between items-end"> <div className="flex flex-col-reverse lg:flex-col grow lg:grow-0 justify-between items-end">
<ul className="flex gap-0 lg:gap-[10px] items-center justify-end w-full flex-wrap"> <ul className="flex gap-0 lg:gap-[10px] items-center justify-end w-full flex-wrap">
{[ {[
{ text: "Open An Account", href: RouteHandler.getStarted }, { text: "Open An Account", href: RouteHandler.letsGetStarted },
{ {
text: "Internet Banking", text: "Internet Banking",
href: RouteHandler.businessBanking, href: RouteHandler.businessBanking,