fix(#15924): 'Learn More' links on my-data page have 2 URLS combined as one (#15980)

* fix(#15924): 'Learn More' links on my-data page have 2 URLS combined as one

* address comments
This commit is contained in:
Sachin Chaurasiya 2024-04-23 11:40:48 +05:30 committed by GitHub
parent 85b6983eee
commit 2ee0d6f847
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 8 additions and 8 deletions

View File

@ -101,13 +101,13 @@ function FollowingWidget({
<Typography.Paragraph> <Typography.Paragraph>
{t('message.not-followed-anything')} {t('message.not-followed-anything')}
</Typography.Paragraph> </Typography.Paragraph>
<Link <a
className="link-title" className="link-title"
href={FOLLOW_DATA_ASSET}
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank">
to={FOLLOW_DATA_ASSET}>
{t('label.learn-more')} {t('label.learn-more')}
</Link> </a>
</ErrorPlaceHolder> </ErrorPlaceHolder>
</div> </div>
} }

View File

@ -115,13 +115,13 @@ const RecentlyViewed = ({
<Typography.Paragraph> <Typography.Paragraph>
{t('message.no-recently-viewed-date')} {t('message.no-recently-viewed-date')}
</Typography.Paragraph> </Typography.Paragraph>
<Link <a
className="link-title" className="link-title"
href={RECENTLY_VIEWED}
rel="noreferrer" rel="noreferrer"
target="_blank" target="_blank">
to={RECENTLY_VIEWED}>
{t('label.learn-more')} {t('label.learn-more')}
</Link> </a>
</ErrorPlaceHolder> </ErrorPlaceHolder>
</div> </div>
) : ( ) : (