Removed unused const in RunPresenter

This commit is contained in:
Matt Aitken
2023-07-26 20:49:09 +01:00
parent 0a3bbc1caf
commit 17e6d42989
@@ -25,25 +25,6 @@ type QueryTask = NonNullable<
Awaited<ReturnType<RunPresenter["query"]>>
>["tasks"][number];
const taskSelect = {
runConnection: {
select: {
integration: {
select: {
definitionId: true,
title: true,
slug: true,
definition: {
select: {
icon: true,
},
},
},
},
},
},
} as const;
export class RunPresenter {
#prismaClient: PrismaClient;