fix realtime logs for mobile
Some checks are pending
Node.js CI / build (postgresql, 18.18, 10) (push) Waiting to run

This commit is contained in:
Francis Cao 2025-11-10 01:07:11 -08:00
parent f3e246c64b
commit 64a6379c3c
3 changed files with 35 additions and 14 deletions

View file

@ -57,7 +57,7 @@ export function ListTable({
showPercentage={showPercentage}
change={renderChange ? renderChange(row, index) : null}
currency={currency}
isMobile={isPhone}
isPhone={isPhone}
/>
);
};
@ -101,7 +101,7 @@ const AnimatedRow = ({
animate,
showPercentage = true,
currency,
isMobile,
isPhone,
}) => {
const props = useSpring({
width: percent,
@ -120,7 +120,7 @@ const AnimatedRow = ({
gap
>
<Row alignItems="center">
<Text truncate={true} style={{ maxWidth: isMobile ? '200px' : '400px' }}>
<Text truncate={true} style={{ maxWidth: isPhone ? '200px' : '400px' }}>
{label}
</Text>
</Row>