}
>
{!totpItems.length && !props.loading &&
{t('txt_no_verification_codes')}
}
{totpItems.map((cipher) => {
const live = totpMap[cipher.id] || null;
const name = cipher.decName || cipher.name || t('txt_no_name');
const username = cipher.login?.decUsername || '';
return (
{name}
{username || t('txt_no_username')}
{live ? formatTotp(live.code) : t('txt_text_3')}
{live ? live.remain : 0}
);
})}