Skip to content

Commit

Permalink
Regression: Fix app privacy links opening in desktop client instead o…
Browse files Browse the repository at this point in the history
…f browser (#26368)
  • Loading branch information
rique223 authored and sampaiodiego committed Aug 2, 2022
1 parent 1295b5b commit 96d3120
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/meteor/client/views/admin/apps/AppSecurity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,12 @@ const AppSecurity: FC<AppSecurityProps> = ({ privacyPolicySummary, appPermission
</Box>
<Box display='flex' flexDirection='column'>
{tosLink && (
<Box is='a' href={tosLink}>
<Box is='a' href={tosLink} target='_blank'>
{t('Terms_of_use')}
</Box>
)}
{privacyLink && (
<Box is='a' href={privacyLink}>
<Box is='a' href={privacyLink} target='_blank'>
{t('Privacy_policy')}
</Box>
)}
Expand Down

0 comments on commit 96d3120

Please sign in to comment.