import React from 'react'
export default function EnhanceStubWarning({ config, moderation = false, className = '' }) {
if (!config?.showStubWarning) {
return null
}
return (
Skinbase Enhance is currently running in preview mode. The generated result is a workflow placeholder until the real upscaling worker is enabled.
{moderation ?
Engine: {config.engine}. This is not a real AI upscale result.
: null}
)
}