Skip to content

Commit

Permalink
💩 assets: hide historical rate chart temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
cruzdanilo committed Mar 19, 2024
1 parent a59fdbd commit 359def7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions components/asset/FloatingPool/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import React, { FC } from 'react';

import FloatingPoolInfo from './FloatingPoolInfo';
import { Box, Grid } from '@mui/material';
import HistoricalRateChart from 'components/charts/HistoricalRateChart';
// import HistoricalRateChart from 'components/charts/HistoricalRateChart';
import UtilizationRateChart from 'components/charts/UtilizationRateChart';

type AssetFloatingPoolProps = {
Expand All @@ -23,15 +23,15 @@ const AssetFloatingPool: FC<AssetFloatingPoolProps> = ({ symbol }) => {
>
<FloatingPoolInfo symbol={symbol} />
</Grid>
<Box
{/* <Box
boxShadow={({ palette }) => (palette.mode === 'light' ? '0px 4px 12px rgba(175, 177, 182, 0.2)' : '')}
borderRadius="0px 0px 6px 6px"
bgcolor="components.bg"
p="16px"
height={280}
>
<HistoricalRateChart symbol={symbol} />
</Box>
</Box> */}
<Box
boxShadow={({ palette }) => (palette.mode === 'light' ? '0px 4px 12px rgba(175, 177, 182, 0.2)' : '')}
borderRadius="0px 0px 6px 6px"
Expand Down

0 comments on commit 359def7

Please sign in to comment.