diff --git a/.gitignore b/.gitignore index cd3bba56..c349c858 100644 --- a/.gitignore +++ b/.gitignore @@ -7,6 +7,10 @@ /.pnp .pnp.js +# TradingView +public/charting_library +public/datafeeds + # testing /coverage @@ -34,4 +38,4 @@ yarn-error.log* .vercel # typescript -*.tsbuildinfo +tsconfig.tsbuildinfo diff --git a/components/account/AccountChart.tsx b/components/account/AccountChart.tsx index 90434550..214fa937 100644 --- a/components/account/AccountChart.tsx +++ b/components/account/AccountChart.tsx @@ -55,6 +55,7 @@ const AccountChart = ({ daysToShow={daysToShow} hideChart={hideChart} loading={loading} + prefix="$" setDaysToShow={handleDaysToShow} tickFormat={(x) => `$${x.toFixed(2)}`} title={t(chartToShow)} diff --git a/components/account/AccountPage.tsx b/components/account/AccountPage.tsx index 585cef98..e3abd6a7 100644 --- a/components/account/AccountPage.tsx +++ b/components/account/AccountPage.tsx @@ -260,7 +260,7 @@ const AccountPage = () => { )}
- +

{t('today')}

@@ -451,7 +451,7 @@ const AccountPage = () => { {formatFixedDecimals(accountPnl, true)}

- +

{t('today')}

@@ -482,7 +482,7 @@ const AccountPage = () => { {formatFixedDecimals(interestTotalValue, true)}

- +

{t('today')}

diff --git a/components/account/ActivityFeed.tsx b/components/account/ActivityFeed.tsx index bd33c0be..42240467 100644 --- a/components/account/ActivityFeed.tsx +++ b/components/account/ActivityFeed.tsx @@ -12,6 +12,7 @@ import { ArrowLeftIcon, ArrowPathIcon, ChevronDownIcon, + ChevronRightIcon, } from '@heroicons/react/20/solid' import mangoStore, { LiquidationFeedItem } from '@store/mangoStore' import dayjs from 'dayjs' @@ -415,11 +416,13 @@ const AdvancedFiltersForm = ({ return ( <>