let accountId = props.accountId ?? context.accountId; const profile = Social.getr(`${accountId}/profile`); const name = profile.name || "No-name profile"; const image = profile.image; return ( <div className="profile d-inline-block" title={`${name} @${accountId}`} style={{ width: "3em", height: "3em" }} > <Widget src="root.near/widget/ProfilePic" props={{ image, }} /> </div> );