diff --git a/packages/keychain/src/components/connect/CreateSession.tsx b/packages/keychain/src/components/connect/CreateSession.tsx index 3c7d2e036..564178dbf 100644 --- a/packages/keychain/src/components/connect/CreateSession.tsx +++ b/packages/keychain/src/components/connect/CreateSession.tsx @@ -36,14 +36,14 @@ export function CreateSession({ variant="connect" title="Create Session" description={ - + <> Pre-approve{" "} {origin} {" "} to perform the following actions on your behalf - + } > diff --git a/packages/keychain/src/hooks/connection.tsx b/packages/keychain/src/hooks/connection.tsx index eb83c1443..3b2a9549f 100644 --- a/packages/keychain/src/hooks/connection.tsx +++ b/packages/keychain/src/hooks/connection.tsx @@ -97,7 +97,9 @@ export function ConnectionProvider({ children }: PropsWithChildren) { // Set rpc and origin if we're not embedded (eg Slot auth/session) if (!isIframe()) { setOrigin(urlParams.get("origin") || process.env.NEXT_PUBLIC_ORIGIN); - setRpcUrl(urlParams.get("rpc_url") || process.env.NEXT_PUBLIC_RPC_SEPOLIA); + setRpcUrl( + urlParams.get("rpc_url") || process.env.NEXT_PUBLIC_RPC_SEPOLIA, + ); } const prefundParam = urlParams.get("prefunds");