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
-
+
);
})}