From 43fc196464cf0ac05bd699f0a39b5aa0c033724d Mon Sep 17 00:00:00 2001 From: Felix Mosheev <9304194+felixmosh@users.noreply.github.com> Date: Thu, 6 Jun 2024 10:22:56 +0300 Subject: [PATCH] fix: types --- packages/fastify/src/FastifyAdapter.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/packages/fastify/src/FastifyAdapter.ts b/packages/fastify/src/FastifyAdapter.ts index bdbbe836..e15beaf0 100644 --- a/packages/fastify/src/FastifyAdapter.ts +++ b/packages/fastify/src/FastifyAdapter.ts @@ -123,8 +123,8 @@ export class FastifyAdapter implements IServerAdapter { method, url, schema: { - hide: true - }, + hide: true, + } as any, handler: (_req, reply) => { const { name, params } = handler({ basePath: this.basePath, uiConfig: this.uiConfig }); @@ -138,8 +138,8 @@ export class FastifyAdapter implements IServerAdapter { method: route.method, url: route.route, schema: { - hide: true - }, + hide: true, + } as any, handler: async (request, reply) => { const response = await route.handler({ queues: this.bullBoardQueues as any,