Commit 62a89dce by jaymehta

.

1 parent 1413de75
......@@ -234,6 +234,7 @@ const ActivityDetails = ({ isUpdate, loadedUser }) => {
console.log("activityPeriodState", activityPeriodState);
return (
<Fragment>
{loadedUser && loadedUser.approved == "approved" ? (
<div className="container p-5">
<div className="row">
<div className="col-12 col-lg-8">
......@@ -1119,6 +1120,18 @@ const ActivityDetails = ({ isUpdate, loadedUser }) => {
</div>
</div>
</div>
) : (
<div className="container">
<div className="m-5 d-flex text-center justify-content-center">
<div className="">
<span className="image-container ">
<Image loading="lazy" layout="fill" alt="" className="image img-fluid mb-5" src="/images/main-logo.svg" style={{ minWidth: "31%", maxWidth: "6%" }} />
</span>
<h1 className="mt-5">Profile is not approved yet, please wait for the admin to approve your profile</h1>
</div>
</div>
</div>
)}
</Fragment>
);
};
......
Styling with Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!