Skip to content

Commit

Permalink
fix: types
Browse files Browse the repository at this point in the history
  • Loading branch information
felixmosh committed Jun 6, 2024
1 parent 8a98a1e commit 43fc196
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/fastify/src/FastifyAdapter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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 });

Expand All @@ -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,
Expand Down

0 comments on commit 43fc196

Please sign in to comment.