Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions src/ui/src/components/Header/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,8 @@ import borrowingIcon from "../../assets/borrowing.svg";
import borrowLimitIcon from "../../assets/borrowLimitIcon.svg";
import questionCircle from "../../assets/questionCircle.svg";
import Box from '@mui/material/Box';
import Link from '@mui/material/Link';


import { supplyCompositionAction } from "../../reduxContent/supplyComposition/actions";
import { borrowCompositionAction } from "../../reduxContent/borrowComposition/actions";
Expand Down Expand Up @@ -46,9 +48,15 @@ const Header = () => {
</Typography>
<Box className={classes.legacyAppNote}>
<Typography>
{
"This is the legacy app for TezFin v2. Please repay all borrowing positions and/or withdraw deposits, and move to the latest TezFin."
}
This is the legacy app for TezFin v2. Please repay all borrowing positions and/or withdraw deposits, and move to the {' '}
<Link
href="https://app.tezos.finance"
target="_blank"
rel="noopener noreferrer"
sx={{ color: 'inherit', textDecoration: 'underline' }}
>
latest TezFin
</Link>.
</Typography>
</Box>
<Grid container className={classes.compositionGrid}>
Expand Down