Skip to content

Commit

Permalink
Merge pull request #347 from goinvo/removePlus
Browse files Browse the repository at this point in the history
remove plus from bottom of myStaffPlan
  • Loading branch information
zhukovdigital authored Nov 28, 2024
2 parents a3b7428 + 2b4aaa4 commit 48c1f01
Showing 1 changed file with 0 additions and 19 deletions.
19 changes: 0 additions & 19 deletions app/people/[userId]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -65,25 +65,6 @@ const UserPage: React.FC = () => {
) : (
<LoadingSpinner />
)}
<div className="sm:block hidden mt-5">
<button
className="bg-white border-2 border-accentgreen w-8 h-8 ml-2 rounded-full flex justify-center items-center"
onClick={() => setAddAssignmentVisible(!addAssignmentVisible)}
>
{addAssignmentVisible ? (
<MinusIcon className="fill-accentgreen" />
) : (
<PlusIcon className="fill-accentgreen" />
)}
</button>
{addAssignmentVisible && (
<AddAssignmentSingleUser
user={singleUserPage}
onClose={onClose}
onComplete={onComplete}
/>
)}
</div>
</>
);
};
Expand Down

0 comments on commit 48c1f01

Please sign in to comment.