From 4f5337412e27bcd47806906290f07299c20fb6d9 Mon Sep 17 00:00:00 2001 From: 0xFirekeeper <0xFirekeeper@gmail.com> Date: Fri, 13 Feb 2026 23:33:59 +0700 Subject: [PATCH] changeset / fmt --- .changeset/old-donkeys-send.md | 5 ++++ .../src/components/Layouts/DocLayout.tsx | 5 +--- apps/portal/src/components/others/Sidebar.tsx | 24 +++++++++++++++---- 3 files changed, 26 insertions(+), 8 deletions(-) create mode 100644 .changeset/old-donkeys-send.md diff --git a/.changeset/old-donkeys-send.md b/.changeset/old-donkeys-send.md new file mode 100644 index 00000000000..242f5f716e1 --- /dev/null +++ b/.changeset/old-donkeys-send.md @@ -0,0 +1,5 @@ +--- +"thirdweb": patch +--- + +fix walletconnect not working on berachain and unallowlisted chains diff --git a/apps/portal/src/components/Layouts/DocLayout.tsx b/apps/portal/src/components/Layouts/DocLayout.tsx index 0f908c2a38b..a7e832490f2 100644 --- a/apps/portal/src/components/Layouts/DocLayout.tsx +++ b/apps/portal/src/components/Layouts/DocLayout.tsx @@ -46,10 +46,7 @@ export function DocLayout(props: DocLayoutProps) { "hidden xl:flex", )} > - + )}
diff --git a/apps/portal/src/components/others/Sidebar.tsx b/apps/portal/src/components/others/Sidebar.tsx index dbcada85c30..c1200e7c408 100644 --- a/apps/portal/src/components/others/Sidebar.tsx +++ b/apps/portal/src/components/others/Sidebar.tsx @@ -68,7 +68,11 @@ export function DocSidebar(props: ReferenceSideBarProps) { {props.links.map((link, i) => ( // biome-ignore lint/suspicious/noArrayIndexKey: TODO - fix this
  • - +
  • ))} @@ -76,7 +80,11 @@ export function DocSidebar(props: ReferenceSideBarProps) { ); } -function SidebarItem(props: { link: SidebarLink; onLinkClick?: () => void, isFirst: boolean }) { +function SidebarItem(props: { + link: SidebarLink; + onLinkClick?: () => void; + isFirst: boolean; +}) { const pathname = usePathname(); if ("separator" in props.link) { @@ -175,7 +183,11 @@ function DocSidebarNonCollapsible(props: { return ( // biome-ignore lint/suspicious/noArrayIndexKey: TODO - fix this
  • - +
  • ); })} @@ -240,7 +252,11 @@ function DocSidebarCategory(props: { return ( // biome-ignore lint/suspicious/noArrayIndexKey: TODO - fix this
  • - +
  • ); })}