Hide speaker organisation

This commit is contained in:
Vencislav Atanasov 2024-10-01 00:02:18 +03:00
parent bea290a5e6
commit 87783809f8
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@ import PropTypes from 'prop-types';
export default function Speaker(speaker) {
return (<>
<a href={'#speaker-'.concat(speaker.id.toString())}>{speaker.name}</a>
{speaker.organisation && <>/&#8288;{speaker.organisation}&#8288;/</>}
{/* speaker.organisation && <>/&#8288;{speaker.organisation}&#8288;/</> */}
</>);
}