Skip to content

Commit

Permalink
fix(web): enable deletion / updating of flags
Browse files Browse the repository at this point in the history
  • Loading branch information
cstrnt committed Jul 8, 2024
1 parent 468b6bd commit 3086d0a
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions apps/web/src/server/trpc/router/flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ export const flagRouter = router({
},
},
},
orderBy: { createdAt: "asc" },
include: {
values: { include: { environment: true } },
},
Expand Down Expand Up @@ -161,7 +162,6 @@ export const flagRouter = router({
include: {
project: {
include: { environments: { select: { name: true } } },
select: { id: true },
},
},
});
Expand Down Expand Up @@ -278,9 +278,6 @@ export const flagRouter = router({
select: { name: true },
},
},
select: {
id: true,
},
},
},
});
Expand Down

0 comments on commit 3086d0a

Please sign in to comment.