diff --git a/packages/flutter/example/lib/main.dart b/packages/flutter/example/lib/main.dart index 98e3bf5..b805a19 100644 --- a/packages/flutter/example/lib/main.dart +++ b/packages/flutter/example/lib/main.dart @@ -106,11 +106,7 @@ class _MyAppState extends State { return const Text('Loading...'); } - if (snapshot.requireData.pairHash.isEmpty) { - return const Text('No pair hash.'); - } final prepareReceiveResponse = snapshot.data!; - debugPrint(prepareReceiveResponse.pairHash); return Column( children: [ @@ -121,9 +117,6 @@ class _MyAppState extends State { style: Theme.of(context).textTheme.headlineSmall, ), ), - ListTile( - title: Text("Pair Hash: ${prepareReceiveResponse.pairHash}"), - ), ListTile( title: Text("Payer Amount: ${prepareReceiveResponse.payerAmountSat} (in sats)"), ),