Skip to content

Commit 1d63b85

Browse files
committed
remove documentation?.tags type
1 parent fee5ef9 commit 1d63b85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ export const swagger =
138138
openapi: '3.0.3',
139139
...{
140140
...documentation,
141-
tags: (documentation?.tags as {name: string; description: string}[])?.filter((tag) => !excludeTags?.includes(tag?.name)),
141+
tags: documentation.tags?.filter((tag) => !excludeTags?.includes(tag?.name)),
142142
info: {
143143
title: 'Elysia Documentation',
144144
description: 'Development documentation',

0 commit comments

Comments
 (0)