fix(cli): use ↑↓ arrows for token usage in footer

This commit is contained in:
2026-03-15 14:01:25 -05:00
parent 16409ff42d
commit 06887e59c7

View File

@@ -59,9 +59,9 @@ export function BottomBar({
<Box> <Box>
{hasTokens ? ( {hasTokens ? (
<> <>
<Text dimColor>^{formatTokens(tokenUsage.input)}</Text> <Text dimColor>{formatTokens(tokenUsage.input)}</Text>
<Text dimColor>{' '}</Text> <Text dimColor>{' '}</Text>
<Text dimColor>v{formatTokens(tokenUsage.output)}</Text> <Text dimColor>{formatTokens(tokenUsage.output)}</Text>
{tokenUsage.cacheRead > 0 && ( {tokenUsage.cacheRead > 0 && (
<> <>
<Text dimColor>{' '}</Text> <Text dimColor>{' '}</Text>
@@ -90,7 +90,7 @@ export function BottomBar({
)} )}
</> </>
) : ( ) : (
<Text dimColor>^0 v0 $0.000</Text> <Text dimColor>0 0 $0.000</Text>
)} )}
</Box> </Box>
<Box> <Box>