Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

Commit

Permalink
Merge pull request #161 from White-Whale-Defi-Platform/fix/peg-gauge
Browse files Browse the repository at this point in the history
disable peg gauge
  • Loading branch information
vinodhum authored May 12, 2022
2 parents 6d35685 + b4c3322 commit 18dd60c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
7 changes: 4 additions & 3 deletions components/vault/VaultItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,12 @@ const VaultItem: FC<Props> = ({ data }) => {
{data.name}
</Text>
</HStack>
<Text color="brand.500" fontSize="2xl" fontWeight="bold">
{/* <Text color="brand.500" fontSize="2xl" fontWeight="bold">
{data.name == "UST" ? `$${ustPrice}` : "--"}
</Text>
</Text> */}
</Flex>
<ChartVault value={data.name == "UST" ? Number(ustPrice) : 0} />
{/* <ChartVault value={data.name == "UST" ? Number(ustPrice) : 0} /> */}
<Flex width="424px" ></Flex>
</Box>
<Box p="8">
<Box>
Expand Down
2 changes: 1 addition & 1 deletion components/vault/VaultTrackerItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const BuildRoute: FC<BuildRouteProps> = ({ arbPairs = [] }) => {
<>
{
arbPairs.map((pair, index) => (
<HStack mb="2" key={pair.dex + pair?.from?.symbol + Date.now() } >
<HStack mb="2" key={pair.dex + pair?.from?.symbol } >
{!isMobile && (
<>
<Text size="lg" textTransform="capitalize"> {index + 1} </Text>
Expand Down

0 comments on commit 18dd60c

Please sign in to comment.