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
return SizedBox(
height: windowHeight,
child: Expanded(
child: ListView(
key: keyListTransactions,
children: <Widget>[certsView(result)],
),
child: ListView(
key: keyListTransactions,
children: <Widget>[certsView(result)],
),
);
},

View File

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