Commit 8964cf86 authored by Moody Salem's avatar Moody Salem

nit with how we convert percent to negative value

parent 0e9f23ed
...@@ -9,7 +9,7 @@ import { ErrorText, ErrorPill } from './styleds' ...@@ -9,7 +9,7 @@ import { ErrorText, ErrorPill } from './styleds'
export default function FormattedPriceImpact({ priceImpact }: { priceImpact?: Percent }) { export default function FormattedPriceImpact({ priceImpact }: { priceImpact?: Percent }) {
return ( return (
<ErrorText fontWeight={500} fontSize={12} severity={warningSeverity(priceImpact)}> <ErrorText fontWeight={500} fontSize={12} severity={warningSeverity(priceImpact)}>
{priceImpact ? `-${priceImpact.toFixed(2)}%` : '-'} {priceImpact ? `${priceImpact.multiply(-1).toFixed(2)}%` : '-'}
</ErrorText> </ErrorText>
) )
} }
...@@ -17,7 +17,7 @@ export default function FormattedPriceImpact({ priceImpact }: { priceImpact?: Pe ...@@ -17,7 +17,7 @@ export default function FormattedPriceImpact({ priceImpact }: { priceImpact?: Pe
export function SmallFormattedPriceImpact({ priceImpact }: { priceImpact?: Percent }) { export function SmallFormattedPriceImpact({ priceImpact }: { priceImpact?: Percent }) {
return ( return (
<ErrorPill fontWeight={500} fontSize={12} severity={warningSeverity(priceImpact)}> <ErrorPill fontWeight={500} fontSize={12} severity={warningSeverity(priceImpact)}>
{priceImpact ? `(-${priceImpact.toFixed(2)}%)` : '-'} {priceImpact ? `(${priceImpact.multiply(-1).toFixed(2)}%)` : '-'}
</ErrorPill> </ErrorPill>
) )
} }
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