+ {/* Skip link for keyboard users */}
+
+ Skip to main content
+
{(shouldShowBackgroundLoading || showPostAuthLoading) && (
@@ -677,7 +634,11 @@ export default function RootLayout({
)}
{/* Main content */}
-
+
@@ -712,9 +673,7 @@ export default function RootLayout({
}
>
-
- {pageIsPublic || userAddress ? children : }
-
+ {pageIsPublic || userAddress ? children :
}
diff --git a/src/components/multisig/proxy/ProxyControlExample.tsx b/src/components/multisig/proxy/ProxyControlExample.tsx
deleted file mode 100644
index 7c110a04..00000000
--- a/src/components/multisig/proxy/ProxyControlExample.tsx
+++ /dev/null
@@ -1,107 +0,0 @@
-import React from "react";
-import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card";
-import { Alert, AlertDescription } from "@/components/ui/alert";
-import { Info } from "lucide-react";
-import ProxyControl from "./ProxyControl";
-
-/**
- * Example page demonstrating how to use the ProxyControl component
- *
- * This component shows how to integrate the ProxyControl into your application
- * and provides context about what the proxy system does.
- */
-export default function ProxyControlExample() {
- return (
-