We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05217aa commit d4f4439Copy full SHA for d4f4439
src/server/routes/contract/subscriptions/remove-contract-subscription.ts
@@ -43,9 +43,7 @@ export async function removeContractSubscription(fastify: FastifyInstance) {
43
handler: async (request, reply) => {
44
const { contractSubscriptionId } = request.body;
45
46
- const contractSubscription = await deleteContractSubscription(
47
- contractSubscriptionId,
48
- );
+ await deleteContractSubscription(contractSubscriptionId);
49
50
reply.status(StatusCodes.OK).send({
51
result: {
0 commit comments