imrpoving tran flow

This commit is contained in:
2025-10-31 09:47:58 +02:00
parent bcc9d629c1
commit 52c8290625
9 changed files with 327 additions and 82 deletions

View File

@@ -45,7 +45,6 @@ class IntegrationController extends ChangeNotifier {
Future<void> doIntegration() async {
try {
model.isLoading = true;
model.status = '';
notifyListeners();
dynamic workflowResponse = await http.get(
@@ -64,6 +63,7 @@ class IntegrationController extends ChangeNotifier {
model.errorMessage = response['errorMessage'];
_showErrorSnackBar(response['errorMessage']);
}
model.isLoading = false;
notifyListeners();
} catch (e) {