diff --git a/src/components/molecules/CrossChainChart/styles.scss b/src/components/molecules/CrossChainChart/styles.scss index adeea53f..1edd9270 100644 --- a/src/components/molecules/CrossChainChart/styles.scss +++ b/src/components/molecules/CrossChainChart/styles.scss @@ -97,6 +97,11 @@ &.targetSelected { flex-direction: row-reverse; + + & .cross-chain-relative-pagination-message, + & .cross-chain-relative-pagination-mobile { + margin-left: unset; + } } & > .pagination { diff --git a/src/components/organisms/ChainActivity/Calendar.tsx b/src/components/organisms/ChainActivity/Calendar.tsx index c38d1b09..a02a6c79 100644 --- a/src/components/organisms/ChainActivity/Calendar.tsx +++ b/src/components/organisms/ChainActivity/Calendar.tsx @@ -59,6 +59,7 @@ export const Calendar = ({ setStartDate(start); setEndDate(end); + setShowCalendar(false); }; const handleLast24Hours = () => setTimePeriod(1, "days", false, "24h"); diff --git a/src/components/organisms/ChainActivity/index.tsx b/src/components/organisms/ChainActivity/index.tsx index d627455a..cf5e64ae 100644 --- a/src/components/organisms/ChainActivity/index.tsx +++ b/src/components/organisms/ChainActivity/index.tsx @@ -179,7 +179,7 @@ const ChainActivity = () => { const tickAmount = allChainsSerie?.[0]?.data?.length > 0 ? isBigDesktop - ? Math.min(allChainsSerie[0].data.length, 19) + ? Math.min(allChainsSerie[0].data.length, 18) : isTablet ? Math.min(allChainsSerie[0].data.length, 10) : 4 @@ -394,7 +394,7 @@ const ChainActivity = () => { setEndDate(new Date()); setStartDateDisplayed(initialDataDate); setEndDateDisplayed(new Date()); - setLastBtnSelected("all"); + setLastBtnSelected("year"); setShowAllSourceChains(true); setShowAllTargetChains(true); setSourceChainListSelected([ALL_SOURCE_CHAINS]); @@ -1035,14 +1035,14 @@ const ChainActivity = () => {
${ showAllSourceChains - ? "
" + ? "
" : "" } ${ metricSelected === "transactions" ? `Transfers Sum: ${formatNumber(totalY, 0)}` - : `Volume Sum: $${numberToSuffix(totalY)}` + : `Volume Sum: $${formatNumber(totalY, 0)}` }

Chains: