// WealthIntelligence — Vault in cui sei informato (read-only, others' vaults you're listed on) const InformedPage = ({state, t}) => { const items = state.informed || []; return
{items.length === 0 ? (

Nessuno ti ha ancora dato accesso a una sua cassetta.

) : (
{items.map(b => (
{b.locked &&
}
{t.informed.from}
{b.from.name}
{b.from.rel}

{b.name}

{b.locked ? t.informed.locked : `${t.informed.unlocked} ${b.date}`}

{!b.locked && ( )}
))}
)}
; }; Object.assign(window, { InformedPage });