We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79ed3b3 commit a6b4df0Copy full SHA for a6b4df0
1 file changed
docs/components/code-snippet/tooltip-content.tsx
@@ -9,15 +9,10 @@ interface Props {
9
10
export function TooltipContent({ snippet }: Props) {
11
return (
12
- <div className="max-w-2xl max-h-96 overflow-auto">
+ <div className="max-w-xl max-h-96 overflow-auto">
13
{snippet.container && (
14
<div className="mb-2">
15
- <a
16
- href={snippet.container.url}
17
- target="_blank"
18
- rel="noopener noreferrer"
19
- className="font-semibold underline"
20
- >
+ <a href={snippet.container.url} target="_blank" rel="noopener noreferrer" className="font-semibold underline">
21
{snippet.container.name}
22
</a>
23
</div>
0 commit comments