Add Beneficiary bugs fixed

This commit is contained in:
2025-09-05 12:02:48 +05:30
parent b8337d1152
commit be9a6fc93f
2 changed files with 32 additions and 25 deletions

View File

@@ -15,15 +15,19 @@ void main() async {
]);
// Check for device compromise
final compromisedMessage = await SecurityService.deviceCompromisedMessage;
if (compromisedMessage != null) {
runApp(MaterialApp(
home: SecurityErrorScreen(message: compromisedMessage),
));
return;
}
// final compromisedMessage = await SecurityService.deviceCompromisedMessage;
// if (compromisedMessage != null) {
// runApp(MaterialApp(
// home: SecurityErrorScreen(message: compromisedMessage),
// ));
// return;
// }
// Initialize dependencies
await setupDependencies();
runApp(const KMobile());
}