Skip to content

Commit

Permalink
Update deletion modal content and FAQ link
Browse files Browse the repository at this point in the history
  • Loading branch information
louilinn committed Oct 27, 2023
1 parent 9e93df4 commit d39686b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@
"titleText": "Are you sure you want to delete your profile data?",
"bodyText": "This action will delete your profile picture, username and email from our databases.",
"bodyText2": "However, this action will not delete historical transaction data or trust interactions.",
"bodyText3": "After deletion you can chose to end session through Settings. You may still recover your account in the future by using your magic words. If you do not log in within 90 days, your UBI payouts will be stopped forever.",
"bodyText3": "After deletion you can chose to end session through Settings. If you do not log in within 90 days, your UBI payouts will be stopped forever.",
"bodyText4": "Please note that data deletion will not happen across wallets. You will have to do profile data deletion your personal wallet and any shared wallets separately before ending session.",
"btnText": "Delete Profile Data",
"confirmationDelete": "Delete",
Expand Down
4 changes: 2 additions & 2 deletions src/components/ButtonDeleteProfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import ExternalLink from '~/components/ExternalLink';
import core from '~/services/core';
import translate from '~/services/locale';
import notify, { NotificationsTypes } from '~/store/notifications/actions';
import { FAQ_URL } from '~/utils/constants';
import { FAQ_URL_DELETION } from '~/utils/constants';
import logError from '~/utils/debug';

const useStyles = makeStyles(() => ({
Expand Down Expand Up @@ -87,7 +87,7 @@ const ButtonDeleteProfile = ({ isOutline, isText }) => {
<Typography align="center" mb={2}>
{translate('ButtonDeleteProfile.bodyText4')}
</Typography>
<ExternalLink href={FAQ_URL}>
<ExternalLink href={FAQ_URL_DELETION}>
<Typography
align="center"
classes={{ root: 'body3_link_gradient' }}
Expand Down
2 changes: 2 additions & 0 deletions src/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ export const BUG_REPORTING_URL =
export const EMAIL_URL = 'mailto:hello@joincircles.net';
export const FACEBOOK_URL = 'https://facebook.com/CirclesUBI';
export const FAQ_URL = 'https://joincircles.net/faq';
export const FAQ_URL_DELETION =
'https://joincircles.net/faq/profile-data-deletion/';
export const FAQ_TRANSITIVE_TRANSFERS_URL =
'https://joincircles.net/faq/who-can-accept-circles-tokens-crc-as-a-payment/';
export const MARKETPLACE_URL = 'http://market.joincircles.net';
Expand Down

0 comments on commit d39686b

Please sign in to comment.