import { useState } from 'react' import { FeeLimitDialog } from '@/components/settings/FeeLimitDialog' import { Button } from '@/components/ui/button' import { Card, CardContent, CardHeader, CardTitle } from '@/components/ui/card' import { FeeConfigErrorAlert } from '@/components/ui/jam/FeeConfigErrorAlert' import type { WalletFileName } from '@/lib/utils' interface FeeConfigTestComponentProps { walletFileName: WalletFileName } export const FeeConfigTestComponent = ({ walletFileName }: FeeConfigTestComponentProps) => { const [showFeeConfigDialog, setShowFeeConfigDialog] = useState(false) const [forceError, setForceError] = useState(false) return ( 🧪 Fee Config Error Test Component

This component allows you to test the fee config error handling.

{/* Force Error Display */} {forceError && setShowFeeConfigDialog(true)} className="mt-4" />} {/* Fee Configuration Dialog */}
) }