Skip to content

Commit

Permalink
fix(util): Remove extra slash (#9347)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jiralite committed Apr 8, 2023
1 parent d66d113 commit b618e21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/website/src/components/documentation/util.ts
Expand Up @@ -23,7 +23,7 @@ export function hasMethods(item: ApiItemContainerMixin) {
}

export function resolveItemURI(item: ApiItem): string {
return `/${item.displayName}:${item.kind}`;
return `${item.displayName}:${item.kind}`;
}

function memberPredicate(item: ApiItem): item is ApiMethod | ApiMethodSignature | ApiProperty | ApiPropertySignature {
Expand Down

1 comment on commit b618e21

@vercel
Copy link

@vercel vercel bot commented on b618e21 Apr 8, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.