Don't allow non-management to access et member management

This commit is contained in:
2024-03-05 21:37:57 -05:00
parent 730e55ebac
commit 2cd5c7a5b7
2 changed files with 6 additions and 8 deletions

View File

@ -454,9 +454,11 @@ export default function () {
<Link color="#646cff" href="/book-event" mt="16px">
Book an Event
</Link>
<Link color="#646cff" href="/et-members" mb="32px" mt="8px">
Events Team Member Management
</Link>
{can_approve ? (
<Link color="#646cff" href="/et-members" mb="32px" mt="8px">
Events Team Member Management
</Link>
) : null}
</VStack>
</Container>
);