Skip to content

Commit

Permalink
minor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Ashish8689 committed Aug 1, 2024
1 parent dbe11ec commit 402ecbf
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ const TeamsPage = () => {
const fetchAllTeamsBasicDetails = async (parentTeam?: string) => {
try {
const { data } = await getTeams({
parentTeam: parentTeam ?? '' ?? 'organization',
parentTeam: parentTeam ?? 'organization',
include: Include.All,
});

Expand All @@ -137,7 +137,7 @@ const TeamsPage = () => {

try {
const { data } = await getTeams({
parentTeam: parentTeam ?? '' ?? 'organization',
parentTeam: parentTeam ?? 'organization',
include: Include.All,
fields: [
TabSpecificField.USER_COUNT,
Expand Down

0 comments on commit 402ecbf

Please sign in to comment.