Skip to content

Commit

Permalink
fix: Label params
Browse files Browse the repository at this point in the history
  • Loading branch information
badalkhatri0924 committed Dec 2, 2023
1 parent da05875 commit 2279712
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/pages/api/tags/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ export default async function handler(req: NextApiRequest, res: NextApiResponse)

if (!user) return $res();

const { activeTeamId } = req.query;
const { organizationTeamId } = req.query;

const par = {
tenantId,
organizationId,
activeTeamId: (activeTeamId as string) || null
organizationTeamId: (organizationTeamId as string) || null
};

switch (req.method) {
Expand Down

0 comments on commit 2279712

Please sign in to comment.