Skip to content

Commit bbf08ff

Browse files
committed
Hide user invitation option in admin UI
1 parent 575256f commit bbf08ff

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

web/src/app/admin/users/page.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ const UsersTables = ({
104104

105105
return (
106106
<>
107-
<HidableSection sectionTitle="Invited Users">
107+
{/* <HidableSection sectionTitle="Invited Users">
108108
{invited.length > 0 ? (
109109
finalInvited.length > 0 ? (
110110
<InvitedUserTable
@@ -124,7 +124,7 @@ const UsersTables = ({
124124
) : (
125125
<ValidDomainsDisplay validDomains={validDomains} />
126126
)}
127-
</HidableSection>
127+
</HidableSection> */}
128128
<SignedUpUserTable
129129
users={accepted}
130130
setPopup={setPopup}
@@ -148,7 +148,7 @@ const SearchableTables = () => {
148148

149149
<div className="flex flex-col gap-y-4">
150150
<div className="flex gap-x-4">
151-
<AddUserButton setPopup={setPopup} />
151+
{/* <AddUserButton setPopup={setPopup} /> */}
152152
<div className="flex-grow">
153153
<SearchBar
154154
query={query}

0 commit comments

Comments
 (0)