diff --git a/src/app/payment/dashboard/PaymentDashboardContent.tsx b/src/app/payment/dashboard/PaymentDashboardContent.tsx
index 00dcf3b8..4031c891 100644
--- a/src/app/payment/dashboard/PaymentDashboardContent.tsx
+++ b/src/app/payment/dashboard/PaymentDashboardContent.tsx
@@ -2,6 +2,7 @@
import React from 'react';
import { PaymentHistory } from '@/components/payment/PaymentHistory';
+import { PaymentQueuePanel } from '@/components/payment/PaymentQueuePanel';
import { featureFlags } from '@/config/payment';
/**
@@ -43,6 +44,18 @@ export function PaymentDashboardContent() {
)}
+ {/* Offline payment queue management (#4). Shown when a provider is
+ configured — the queue itself works offline regardless, but the panel
+ is only meaningful where payments can actually be made. */}
+ {!noProvidersConfigured && (
+
+