Fix sats output

This commit is contained in:
2026-01-30 03:10:37 +00:00
parent 2c40a7ad73
commit bae333c8ad
2 changed files with 6 additions and 0 deletions

Binary file not shown.

View File

@@ -679,6 +679,12 @@ export function ActionWizardScreen(): React.ReactElement {
Type your value, then press Enter to continue Type your value, then press Enter to continue
</Text> </Text>
</Box> </Box>
<Box marginTop={1} borderStyle="single" borderColor="yellow" paddingX={1}>
<Text color="yellow">DEBUG - Variable values:</Text>
{variables.map((v, i) => (
<Text key={i} color="yellow"> {i}: "{v.value}"</Text>
))}
</Box>
</Box> </Box>
); );