hotfix: bad parent data

This commit is contained in:
poka 2022-12-02 06:28:19 +01:00
parent bafd853884
commit 68fe7925ac
2 changed files with 6 additions and 10 deletions

View File

@ -65,11 +65,9 @@ class CertsReceived extends StatelessWidget {
// Build history list // Build history list
return SizedBox( return SizedBox(
height: windowHeight, height: windowHeight,
child: Expanded( child: ListView(
child: ListView( key: keyListTransactions,
key: keyListTransactions, children: <Widget>[certsView(result)],
children: <Widget>[certsView(result)],
),
), ),
); );
}, },

View File

@ -65,11 +65,9 @@ class CertsSent extends StatelessWidget {
// Build history list // Build history list
return SizedBox( return SizedBox(
height: windowHeight, height: windowHeight,
child: Expanded( child: ListView(
child: ListView( key: keyListTransactions,
key: keyListTransactions, children: <Widget>[certsView(result)],
children: <Widget>[certsView(result)],
),
), ),
); );
}, },