Skip to content

Commit

Permalink
remove documentation?.tags type
Browse files Browse the repository at this point in the history
  • Loading branch information
kaanduraa committed Apr 29, 2024
1 parent fee5ef9 commit 1d63b85
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ export const swagger =
openapi: '3.0.3',
...{
...documentation,
tags: (documentation?.tags as {name: string; description: string}[])?.filter((tag) => !excludeTags?.includes(tag?.name)),
tags: documentation.tags?.filter((tag) => !excludeTags?.includes(tag?.name)),
info: {
title: 'Elysia Documentation',
description: 'Development documentation',
Expand Down

0 comments on commit 1d63b85

Please sign in to comment.