fix(files-tab): remove inline video preview from proxy row

This commit is contained in:
Zac Gaetano 2026-05-26 16:10:04 +00:00
parent 4f98f2b773
commit e9eeb84c5f

View file

@ -799,19 +799,7 @@ function FilesTab({ asset, filmFrames, filmstripLoading, streamUrl, reprocessing
actionLabel={reprocessing === 'proxy' ? 'Queuing…' : 'Re-generate'}
onAction={onRegenProxy}
disabled={reprocessing === 'proxy'}
>
{streamUrl && (
<video
src={streamUrl}
style={{ width: '100%', maxHeight: 160, objectFit: 'contain', borderRadius: 4, background: '#000', display: 'block' }}
muted
controls
/>
)}
{!streamUrl && !hasProxy && (
<div style={{ fontSize: 11.5, color: 'var(--text-3)' }}>No browser-playable proxy yet.</div>
)}
</FileRow>
/>
{/* Hi-res */}
<FileRow