fixed error causing trade details page to have no contents

Tanner Silva committed Feb 6, 2021 at 14:33 UTC 1f401421ead061487710e46cb1aa9ca9961881bb
1 file changed +1 -3
lib/src/screens/trade_details/trade_details_page.dart
+1 -3
@@ -32,9 +32,7 @@ class TradeDetailsPage extends BasePage {
32 onTap: item.onTap,
33 child: StandartListRow(
34 title: '${item.title}', value: '${item.value}'));
35 - }
36 -
37 - if (item is SectionStandardListItem) {
35 + } else {
36 return GestureDetector(
37 onTap: () {
38 Clipboard.setData(ClipboardData(text: '${item.value}'));