import React, { FunctionComponent } from "react"; import { ConfirmationContent, DismissalButton, MESSAGE_TYPE, } from "./ConfirmationContent"; interface ProviderTimeoutMessageProps { address: string; } export const ProviderTimeoutMessage: FunctionComponent< ProviderTimeoutMessageProps > = ({ address }) => { return (

Loading the endorsement chain is taking longer than usual. To address this,{" "} change your Remote Procedure Call (RPC) provider .

); };