We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fade29 commit 7819128Copy full SHA for 7819128
2 files changed
client/src/pages/Organizations.jsx
@@ -26,7 +26,7 @@ import {
26
updateOrganizationStatus
27
} from "../api";
28
29
-export const Organizations = ({pendingApproval, tab}) => {
+export const Organizations = ({pendingApproval}) => {
30
31
const setFlash = useAppStore(state => state.setFlash);
32
client/src/pages/System.jsx
@@ -50,10 +50,10 @@ const System = () => {
50
return <Users/>
51
}
52
case "organizations": {
53
- return <Organizations pendingApproval={false} tab={currentTab}/>
+ return <Organizations pendingApproval={false} />
54
55
case "organizationPendingApproval": {
56
- return <Organizations pendingApproval={true} tab={currentTab}/>
+ return <Organizations pendingApproval={true}/>
57
58
59
0 commit comments