Skip to content

Commit

Permalink
Remove from login view
Browse files Browse the repository at this point in the history
  • Loading branch information
mikozet committed Jul 8, 2024
1 parent 15c1420 commit 7f23287
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions src/views/Login.js
Original file line number Diff line number Diff line change
Expand Up @@ -123,17 +123,6 @@ const Login = () => {
const parsedPhrase = seedPhrase.trim().split(/\s+/g);
const isValid = parsedPhrase.length === 24;

const env = process.env.BASE_PATH;
const htmlMigrationContent = (
<span
dangerouslySetInnerHTML={{
__html: translate('Login.migrationText2', {
env,
}),
}}
/>
);

return (
<BackgroundCurved gradient="turquoise">
<Header
Expand Down Expand Up @@ -201,12 +190,8 @@ const Login = () => {
{MIGRATION_INFO_URL}
</ExternalLink>
</Typography>
<Typography
align="center"
classes={{ root: 'body3_link_gradient' }}
variant="body1"
>
{htmlMigrationContent}
<Typography align="center" variant="body1">
{translate('Login.migrationText2')}
</Typography>
</Box>
</Container>
Expand Down

0 comments on commit 7f23287

Please sign in to comment.