+
+ {/* INTERACTIVE OVERLAY PANEL */}
+ {isDropdownOpen && (
+
+
+ Active Ledger Authority
+ setIsDropdownOpen(false)}
+ className="text-xs text-blue-500 hover:underline font-medium"
+ >
+ Manage All
+
+
+
+ {grantsState.loading ? (
+
Syncing delegation keys...
+ ) : grantsState.grants.length > 0 ? (
+
+ {grantsState.grants.map((grant) => (
+
+
+
+ {grant.scope.replace("_", " ")}
+
+
+ Target: {grant.grantee}
+
+ {grant.authorizedAmount && (
+
+ Limit: {grant.authorizedAmount} {grant.assetSymbol || "XLM"}
+
+ )}
+
+
+
+ ))}
+
+ ) : (
+
+ No delegated allowances bound to this address.
+
+ )}
+