Skip to content

Commit

Permalink
Update migration information
Browse files Browse the repository at this point in the history
  • Loading branch information
mikozet committed Aug 19, 2024
1 parent 6317b60 commit ec64863
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 22 deletions.
3 changes: 1 addition & 2 deletions locales/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
"linkSupport": "Send an email",
"linkMigrationText": "Migrate Your Profile",
"successWelcome": "Successfully connected to account. Welcome!",
"migrationText1": "Circles Garden profile data is being migrated. You can read about this here:",
"migrationText1": "Circles Garden profile data is being migrated.",
"migrationText2": "Please login and visit the Migrate Your Profile page to confirm your preference",
"migrationText3": "Please visit the <a href='{env}/profile-migrate' rel='noopener noreferrer'>Migrate Your Profile</a> page to confirm your preference"
},
Expand All @@ -213,7 +213,6 @@
"body1": "If you accept the migration of your user profile, this will mean that your data will be transferred to the new Circles team (Gnosis Chain).",
"body2": "At the end of the migration period, all the data that is not transferred will be deleted from current databases.",
"body3": "Your wallet, seed phrase, and CRC will not be deleted regardless of your choice and you will still be able to access to your wallet via circles.garden.",
"body4": "You can read about this here:",
"labelForm": "Do you consent to the migration of your profile data to the new Circles team?",
"option1": "Yes",
"option2": "no",
Expand Down
1 change: 0 additions & 1 deletion src/utils/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export const PRIVACY_LEGAL_URL = 'https://joincircles.net/privacy-policy';
export const TELEGRAM_URL = 'https://t.me/about_circles';
export const TERMS_URL = 'https://joincircles.net/terms';
export const TWITTER_URL = 'https://twitter.com/aboutcircles';
export const MIGRATION_INFO_URL = 'https://bit.ly/3W1il2M';

export const SAFE_LAST_VERSION = '1.3.0';
export const SAFE_CRC_VERSION = '1.1.1';
Expand Down
10 changes: 0 additions & 10 deletions src/views/Dashboard.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import BackgroundCurved from '~/components/BackgroundCurved';
import BalanceDisplay from '~/components/BalanceDisplay';
import ButtonDouble from '~/components/ButtonDouble';
import Drawer from '~/components/Drawer';
import ExternalLink from '~/components/ExternalLink';
import Header from '~/components/Header';
import LastInteractions from '~/components/LastInteractions';
import Navigation from '~/components/Navigation';
Expand All @@ -28,7 +27,6 @@ import {
checkPendingActivities,
} from '~/store/activity/actions';
import { IconMenu } from '~/styles/icons';
import { MIGRATION_INFO_URL } from '~/utils/constants';

const transitionMixin = ({ transitions }) => ({
transition: transitions.create(['transform'], {
Expand Down Expand Up @@ -171,14 +169,6 @@ const Dashboard = () => {
<Box className={classes.migrationContainer}>
<Typography align="center" variant="body1">
{translate('Login.migrationText1')}
<br></br>
<ExternalLink
classes={{ root: 'body3_link_gradient' }}
href={MIGRATION_INFO_URL}
variant="body3"
>
{MIGRATION_INFO_URL}
</ExternalLink>
</Typography>
<Typography
align="center"
Expand Down
10 changes: 1 addition & 9 deletions src/views/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import translate from '~/services/locale';
import { hideSpinnerOverlay, showSpinnerOverlay } from '~/store/app/actions';
import notify, { NotificationsTypes } from '~/store/notifications/actions';
import { restoreAccount } from '~/store/onboarding/actions';
import { EMAIL_URL, MIGRATION_INFO_URL } from '~/utils/constants';
import { EMAIL_URL } from '~/utils/constants';
import {
RESTORE_ACCOUNT_INVALID_SEED_PHRASE,
RESTORE_ACCOUNT_UNKNOWN_SAFE,
Expand Down Expand Up @@ -181,14 +181,6 @@ const Login = () => {
<Box className={classes.migrationContainer}>
<Typography align="center" variant="body1">
{translate('Login.migrationText1')}
<br></br>
<ExternalLink
classes={{ root: 'body3_link_gradient' }}
href={MIGRATION_INFO_URL}
variant="body3"
>
{MIGRATION_INFO_URL}
</ExternalLink>
</Typography>
<Typography align="center" variant="body1">
{translate('Login.migrationText2')}
Expand Down

0 comments on commit ec64863

Please sign in to comment.