import { h, VNode } from "preact"; import { useAnastasisContext } from "../../context/anastasis.js"; import { AnastasisClientFrame } from "./index.js"; export function ChallengePayingScreen(): VNode { const reducer = useAnastasisContext(); if (!reducer) { return
no reducer in context
; } if (reducer.currentReducerState?.reducer_type !== "recovery") { return
invalid state
; } const payments = [""]; //reducer.currentReducerState.payments ?? return (

Some of the providers require a payment to store the encrypted authentication information.

); }