fix: shorten liquid and lightning network label - #2467
Conversation
|
Claude finished @wired-pasteque's task in 2m 1s —— View job Review: fix: shorten liquid and lightning network label
SummaryThe change is safe and does what it says: However, this fixes the symptom of #2292 rather than the cause, so the overflow can still reproduce. Two findings below (I can't submit formal inline review comments from this workflow, so they're listed here with file/line references). Findings1. The card layout can still overflow — the root cause of #2292 is untouched ( The description row places two unconstrained widgets side by side: Row(
mainAxisAlignment: MainAxisAlignment.spaceBetween,
children: [
BBText(description, ...), // no Flexible, no maxLines
const Gap(4),
CurrencyText(balanceSat, showFiat: true, ...),
],
),Neither child is wrapped in A more durable fix is to wrap the left-hand 2. Hardcoded English string diverges from the localization catalog (
VerdictApprove-with-suggestions: the label shortening is a fine immediate mitigation and regression-free, but consider following up with the |
Fix: #2292