From a86c45a88ba0aa01f4d9a79800b6295f31b3df15 Mon Sep 17 00:00:00 2001 From: Abdullah Alassaf Date: Sun, 8 Sep 2024 23:10:22 +0300 Subject: [PATCH] Removed prints and warnings --- lib/services/auth_api.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/services/auth_api.dart b/lib/services/auth_api.dart index 5d5dcd57..f84bed1a 100644 --- a/lib/services/auth_api.dart +++ b/lib/services/auth_api.dart @@ -1,4 +1,3 @@ -import 'package:dio/dio.dart'; import 'package:syncrow_web/pages/auth/model/region_model.dart'; import 'package:syncrow_web/pages/auth/model/token.dart'; import 'package:syncrow_web/services/api/http_service.dart'; @@ -36,6 +35,7 @@ class AuthenticationAPI { expectedResponseModel: (json) { return json['data']['cooldown']; }); + return response; } static Future verifyOtp({required String email, required String otpCode}) async {