Skip to content

Commit 6df25d6

Browse files
authored
rebrand paraswap to velora (#2541)
1 parent e186d1c commit 6df25d6

File tree

6 files changed

+20
-10
lines changed

6 files changed

+20
-10
lines changed

public/icons/other/paraswap.svg

Lines changed: 0 additions & 1 deletion
This file was deleted.

public/icons/other/velora.svg

Lines changed: 12 additions & 0 deletions
Loading

src/hooks/paraswap/useCollateralRepaySwap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ export const useCollateralRepaySwap = ({
128128
console.error(e);
129129
const message =
130130
convertParaswapErrorMessage(e.message) ||
131-
'There was an issue fetching data from Paraswap';
131+
'There was an issue fetching data from Velora';
132132
setError(message);
133133
} finally {
134134
setLoading(false);

src/hooks/paraswap/useCollateralSwap.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ export const useCollateralSwap = ({
109109
console.error(e);
110110
const message =
111111
convertParaswapErrorMessage(e.message) ||
112-
'There was an issue fetching data from Paraswap';
112+
'There was an issue fetching data from Velora';
113113
setError(message);
114114
} finally {
115115
setLoading(false);

src/hooks/paraswap/useDebtSwitch.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ export const useDebtSwitch = ({
112112
console.error(e);
113113
const message =
114114
convertParaswapErrorMessage(e.message) ||
115-
'There was an issue fetching data from Paraswap';
115+
'There was an issue fetching data from Velora';
116116
setError(message);
117117
} finally {
118118
setLoading(false);

src/modules/dashboard/lists/SlippageList.tsx

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { SlippageTooltip } from 'src/components/infoTooltips/SlippageTooltip';
1616
import { useRootStore } from 'src/store/root';
1717
import { GENERAL } from 'src/utils/events';
1818

19-
import Paraswap from '/public/icons/other/paraswap.svg';
19+
import VeloraIcon from '/public/icons/other/velora.svg';
2020

2121
interface ListSlippageButtonProps {
2222
setSlippage: (value: string) => void;
@@ -125,17 +125,16 @@ export const ListSlippageButton = ({
125125
sx={{
126126
fontSize: '20px',
127127
width: '20px',
128-
color: '#2669F5',
129128
position: 'relative',
130-
top: '5px',
131-
left: '5px',
129+
top: '2px',
130+
left: '2px',
132131
}}
133132
>
134-
<Paraswap />
133+
<VeloraIcon />
135134
</SvgIcon>
136135
</Typography>
137136
<Typography variant="main12" color="text.secondary">
138-
Paraswap
137+
Velora
139138
</Typography>
140139
</Box>
141140
</Menu>

0 commit comments

Comments
 (0)