- {
- account && links.map((link) =>
- React.cloneElement(link, {
- key: link.props.to,
- 'aria-label': formatMessage({
- id: link.props['data-preview-title-id']
- })
- }))
- }
- {
- !account && links.map((link, i) => React.cloneElement(link, {
- key: i,
- }))
- }
+ { account ? this.getPrivateLinks() : this.getPublicLinks() }