fix height of details modal when adding note from send confirmation (#3413)

malik1004x committed Jul 18, 2026 at 17:31 UTC 5dfae0e13a8d18b0df2a428221bec3b2f217b00b
1 file changed +2 -1
lib/new-ui/widgets/send_page/send_confirm_sheet.dart
+2 -1
@@ -513,7 +513,8 @@ class _TransactionCommitedScreenState extends State<TransactionCommitedScreen> {
513 showModalBottomSheet(
514 isScrollControlled: true,
515 context: context,
516 - builder: (context) => page);
516 + builder: (context) =>
517 + FractionallySizedBox(heightFactor: 0.9, child: page));
518 }),
519 ],
520 ),