Skip to content

Commit

Permalink
fix: skip app members query while org context is null (#244)
Browse files Browse the repository at this point in the history
* fix: skip org members query while org context is null

* fix: cleanup
  • Loading branch information
rohan-chaturvedi authored Apr 30, 2024
1 parent db2acb9 commit 314e560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/app/[team]/apps/[app]/members/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,8 +53,8 @@ export default function Members({ params }: { params: { team: string; app: strin
variables: {
organisationId: organisation?.id,
role: null,
skip: !organisation,
},
skip: !organisation,
})

const memberOptions =
Expand Down

0 comments on commit 314e560

Please sign in to comment.