From 68fe7925ac6ed326f9810a6a9dcff380290543bb Mon Sep 17 00:00:00 2001 From: poka Date: Fri, 2 Dec 2022 06:28:19 +0100 Subject: [PATCH] hotfix: bad parent data --- lib/widgets/certs_received.dart | 8 +++----- lib/widgets/certs_sent.dart | 8 +++----- 2 files changed, 6 insertions(+), 10 deletions(-) diff --git a/lib/widgets/certs_received.dart b/lib/widgets/certs_received.dart index 192932e..32c274e 100644 --- a/lib/widgets/certs_received.dart +++ b/lib/widgets/certs_received.dart @@ -65,11 +65,9 @@ class CertsReceived extends StatelessWidget { // Build history list return SizedBox( height: windowHeight, - child: Expanded( - child: ListView( - key: keyListTransactions, - children: [certsView(result)], - ), + child: ListView( + key: keyListTransactions, + children: [certsView(result)], ), ); }, diff --git a/lib/widgets/certs_sent.dart b/lib/widgets/certs_sent.dart index a7a897d..689f7f5 100644 --- a/lib/widgets/certs_sent.dart +++ b/lib/widgets/certs_sent.dart @@ -65,11 +65,9 @@ class CertsSent extends StatelessWidget { // Build history list return SizedBox( height: windowHeight, - child: Expanded( - child: ListView( - key: keyListTransactions, - children: [certsView(result)], - ), + child: ListView( + key: keyListTransactions, + children: [certsView(result)], ), ); },