From 6dca8013af4e91a08851aa2de0793691a3727817 Mon Sep 17 00:00:00 2001 From: Almeida Date: Wed, 8 Nov 2023 23:38:13 +0000 Subject: [PATCH] chore: remove parameter list from events (#9933) --- apps/website/src/components/model/Event.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/apps/website/src/components/model/Event.tsx b/apps/website/src/components/model/Event.tsx index 27d8b1e23..8fed2da56 100644 --- a/apps/website/src/components/model/Event.tsx +++ b/apps/website/src/components/model/Event.tsx @@ -4,7 +4,6 @@ import { CodeHeading } from '../CodeHeading'; import { InheritanceText } from '../InheritanceText'; import { ParameterTable } from '../ParameterTable'; import { TSDoc } from '../documentation/tsdoc/TSDoc'; -import { parametersString } from '../documentation/util'; export function Event({ item, @@ -24,7 +23,7 @@ export function Event({ sourceURL={item.sourceLocation.fileUrl} sourceLine={item.sourceLocation.fileLine} > - {`${item.name}(${parametersString(item)})`} + {item.name} {hasSummary || inheritedFrom ? (