10 lines
215 B
TypeScript
10 lines
215 B
TypeScript
'use client';
|
|
|
|
import { EmailDebug } from '../components/debug/EmailDebug';
|
|
|
|
export default function EmailDebugTool() {
|
|
if (process.env.NODE_ENV === 'production') {
|
|
return null;
|
|
}
|
|
return <EmailDebug />;
|
|
}
|