fix(ui): replace ad-hoc fingerprints empty state div with EmptyState component

This commit is contained in:
2026-05-21 15:40:10 -04:00
parent 28f26cc5f3
commit cd3c1104b4

View File

@@ -280,9 +280,10 @@ const AttackerDetail: React.FC = () => {
)} )}
</div> </div>
) : ( ) : (
<div style={{ padding: '24px', textAlign: 'center', opacity: 0.5 }}> <EmptyState
{serviceFilter ? `NO ${serviceFilter.toUpperCase()} FINGERPRINTS CAPTURED` : 'NO FINGERPRINTS CAPTURED'} icon={Fingerprint}
</div> title={serviceFilter ? `NO ${serviceFilter.toUpperCase()} FINGERPRINTS CAPTURED` : 'NO FINGERPRINTS CAPTURED'}
/>
)} )}
</Section> </Section>
); );