ALwrity Facebook Writer CopilotKit Implementation Plan

This commit is contained in:
ajaysi
2025-08-31 18:41:07 +05:30
parent 66c14e158c
commit eb0789321d
11 changed files with 2116 additions and 206 deletions

View File

@@ -40,7 +40,7 @@ const TechnicalUI: React.FC<{ args: any; respond: (data: any) => void }> = ({ ar
{['full', 'core_web_vitals', 'mobile_friendliness', 'security'].map((s) => (
<label key={s} style={{ display: 'flex', alignItems: 'center', gap: 4 }}>
<input type="radio" name="scope" value={s} checked={scope === s} onChange={() => setScope(s)} />
{s.replaceAll('_', ' ')}
{s.split('_').join(' ')}
</label>
))}
</div>