Commit d0d52404 authored by Greg Bugyis's avatar Greg Bugyis Committed by GitHub

fix: update Token table headers to match latest Figma (#4505)

TokenTable: update table headers to match latest Figma
Co-authored-by: default avatargbugyis <greg@bugyis.com>
parent 751ce8e6
......@@ -314,7 +314,7 @@ const LogoContainer = styled.div`
/* formatting for volume with timeframe header display */
function getHeaderDisplay(category: string, timeframe: TimePeriod): string {
if (category === Category.volume) return `${DISPLAYS[timeframe]} ${category}`
if (category === Category.volume || category === Category.percentChange) return `${DISPLAYS[timeframe]} ${category}`
return category
}
......
export enum Category {
percentChange = '% Change',
percentChange = 'Change',
marketCap = 'Market Cap',
price = 'Price',
volume = 'Volume',
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment