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 Jul 27, 2022
1 parent 0c1ecb5 commit 3ca01a8
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 3ca01a8

Please sign in to comment.