Big changes and fixes. Uses action history. Improve role selection. Remove unused logs

This commit is contained in:
2026-02-08 15:41:14 +00:00
parent da096af0fa
commit df57f1b9ad
16 changed files with 1250 additions and 1181 deletions

View File

@@ -41,6 +41,7 @@ export function VariableInputField({
borderColor={isFocused ? focusColor : borderColor}
paddingX={1}
marginTop={1}
gap={1}
>
<TextInput
value={variable.value}
@@ -49,6 +50,9 @@ export function VariableInputField({
focus={isFocused}
placeholder={`Enter ${variable.name}...`}
/>
{/* TODO: this may need to be conditional. Need to play around with other templates though */}
<Text color={borderColor} dimColor>{variable.hint}</Text>
</Box>
{variable.type === 'integer' && variable.hint === 'satoshis' && (