Skip to content

Commit

Permalink
Fix create session origin (#354)
Browse files Browse the repository at this point in the history
  • Loading branch information
broody authored Jun 12, 2024
1 parent c747ec5 commit c23124f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/keychain/src/components/connect/CreateSession.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export function CreateSession({
onConnect: (policies: Policy[]) => void;
onCancel: () => void;
}) {
const { controller, policies } = useConnection();
const { controller, policies, origin } = useConnection();
const [isConnecting, setIsConnecting] = useState(false);
const [expiresAt] = useState<bigint>(3000000000n);
const [maxFees] = useState<BigNumberish>();
Expand Down

0 comments on commit c23124f

Please sign in to comment.