Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/DocsLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@
const prevItem = flatMenu[index - 1]
const nextItem = flatMenu[index + 1]

const [showBytes, setShowBytes] = useLocalStorage('showBytes', true)

Check warning on line 185 in src/components/DocsLayout.tsx

View workflow job for this annotation

GitHub Actions / PR

'setShowBytes' is assigned a value but never used

Check warning on line 185 in src/components/DocsLayout.tsx

View workflow job for this annotation

GitHub Actions / PR

'showBytes' is assigned a value but never used
const [isFullWidth, setIsFullWidth] = useLocalStorage('docsFullWidth', false)

const activePartners = partners.filter(
Expand Down Expand Up @@ -219,7 +219,7 @@
return (
<li key={i}>
{child.to.startsWith('http') ? (
<a href={child.to} className={linkClasses}>
<a href={child.to} className={linkClasses} target="_blank" rel="noopener noreferrer">
{child.label}
</a>
) : (
Expand Down
Loading