Skip to content

Commit f8877e4

Browse files
committed
chore: final tweaks
1 parent 43b4684 commit f8877e4

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/features/common/components/input.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ const TextAreaInput = React.forwardRef<HTMLTextAreaElement, TextAreaInputProps>(
2424
return (
2525
<textarea
2626
className={cn(
27-
'border-input ring-offset-background placeholder:text-muted-foreground focus-visible:ring-ring flex h-40 w-full rounded-md border bg-transparent px-3 py-2 text-sm file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-offset-1 disabled:cursor-not-allowed disabled:opacity-50',
27+
'border-input ring-offset-background placeholder:text-muted-foreground focus-visible:ring-ring flex h-20 w-full rounded-md border bg-transparent px-3 py-2 text-sm file:border-0 file:bg-transparent file:text-sm file:font-medium focus-visible:outline-none focus-visible:ring-1 focus-visible:ring-offset-1 disabled:cursor-not-allowed disabled:opacity-50',
2828
className
2929
)}
3030
ref={ref}

src/features/transaction-wizard/components/app-call-transaction-builder.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export function AppCallTransactionBuilder({ mode, transaction, activeAccount, de
141141
return helper.textField({
142142
field: `args.${index}.value`,
143143
label: `Argument ${index + 1}`,
144-
helpText: 'A base64 encoded bytes value',
144+
helpText: `A base64 encoded bytes value${index === 0 ? '. If using ABI, this should be the method selector' : ''}`,
145145
})
146146
},
147147
})}

src/features/transaction-wizard/components/application-create-transaction-builder.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ export function ApplicationCreateTransactionBuilder({ mode, transaction, activeA
183183
return helper.textField({
184184
field: `args.${index}.value`,
185185
label: `Argument ${index + 1}`,
186-
helpText: `A base64 encoded bytes value${index === 0 ? '. When using ABI, this should be the method selector' : ''}`,
186+
helpText: `A base64 encoded bytes value${index === 0 ? '. If using ABI, this should be the method selector' : ''}`,
187187
})
188188
},
189189
})}

src/features/transaction-wizard/components/application-update-transaction-builder.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ export function ApplicationUpdateTransactionBuilder({ mode, transaction, activeA
134134
return helper.textField({
135135
field: `args.${index}.value`,
136136
label: `Argument ${index + 1}`,
137-
helpText: `A base64 encoded bytes value${index === 0 ? '. When using ABI, this should be the method selector' : ''}`,
137+
helpText: `A base64 encoded bytes value${index === 0 ? '. If using ABI, this should be the method selector' : ''}`,
138138
})
139139
},
140140
})}

0 commit comments

Comments
 (0)