Spaces:
Sleeping
Sleeping
Commit ·
46a346c
1
Parent(s): 021ab84
fix(a11y): add rel=noopener noreferrer to external billing link
Browse files
components/user-menu/index.tsx
CHANGED
|
@@ -63,7 +63,11 @@ export const UserMenu = ({ className }: { className?: string }) => {
|
|
| 63 |
View Projects
|
| 64 |
</DropdownMenuItem>
|
| 65 |
</Link>
|
| 66 |
-
<a
|
|
|
|
|
|
|
|
|
|
|
|
|
| 67 |
<DropdownMenuItem>
|
| 68 |
<ChartSpline className="size-4 text-neutral-100" />
|
| 69 |
Usage Quota
|
|
|
|
| 63 |
View Projects
|
| 64 |
</DropdownMenuItem>
|
| 65 |
</Link>
|
| 66 |
+
<a
|
| 67 |
+
href="https://huggingface.co/settings/billing"
|
| 68 |
+
target="_blank"
|
| 69 |
+
rel="noopener noreferrer"
|
| 70 |
+
>
|
| 71 |
<DropdownMenuItem>
|
| 72 |
<ChartSpline className="size-4 text-neutral-100" />
|
| 73 |
Usage Quota
|