Skip to content

Commit

Permalink
fix: enabled display of wing-level duty positions
Browse files Browse the repository at this point in the history
  • Loading branch information
Glenn Rioux authored and r-a303931 committed Jan 16, 2024
1 parent cf07bab commit 3dfca9a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/server/src/api/member/membersearch.ts
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ export const func: Endpoint<
EitherObj<ServerError, api.member.MemberSearchResult>
>(id =>
backend
.getMember(req.account)({
.getMember(req.account.type === 'CAPWing' ? { ...req.account, id: req.account.id + '-ignore', orgIDs: safeOrgIds } : req.account)({
type: 'CAPNHQMember',
id,
})
Expand Down

0 comments on commit 3dfca9a

Please sign in to comment.