Skip to content

Commit 7819128

Browse files
committed
lint
1 parent 8fade29 commit 7819128

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

client/src/pages/Organizations.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ import {
2626
updateOrganizationStatus
2727
} from "../api";
2828

29-
export const Organizations = ({pendingApproval, tab}) => {
29+
export const Organizations = ({pendingApproval}) => {
3030

3131
const setFlash = useAppStore(state => state.setFlash);
3232

client/src/pages/System.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ const System = () => {
5050
return <Users/>
5151
}
5252
case "organizations": {
53-
return <Organizations pendingApproval={false} tab={currentTab}/>
53+
return <Organizations pendingApproval={false} />
5454
}
5555
case "organizationPendingApproval": {
56-
return <Organizations pendingApproval={true} tab={currentTab}/>
56+
return <Organizations pendingApproval={true}/>
5757
}
5858
}
5959
}

0 commit comments

Comments
 (0)