courrier multi account

This commit is contained in:
alma 2025-04-27 17:03:04 +02:00
parent 7fa9f1ae76
commit 172e5b74c6
2 changed files with 2 additions and 6 deletions

View File

@ -19,11 +19,7 @@ export function RedisCacheStatus() {
if (data.ready) { if (data.ready) {
setStatus('connected'); setStatus('connected');
// Include EmailDebug component dynamically if it exists // No need to dynamically import EmailDebug - it's managed by the debug-tool component
const { EmailDebug } = await import('./EmailDebug');
if (EmailDebug) {
// It's available
}
} else { } else {
setStatus('error'); setStatus('error');
toast({ toast({

View File

@ -1,6 +1,6 @@
'use client'; 'use client';
import { EmailDebug } from '@/components/debug/EmailDebug'; import { EmailDebug } from '../components/debug/EmailDebug';
export default function EmailDebugTool() { export default function EmailDebugTool() {
if (process.env.NODE_ENV === 'production') { if (process.env.NODE_ENV === 'production') {