diff --git a/app/api/routes/routes.py b/app/api/routes/routes.py index 9bc1820..f9e2d03 100644 --- a/app/api/routes/routes.py +++ b/app/api/routes/routes.py @@ -302,8 +302,9 @@ def common_practice(): # Call the dashboard service data = request.get_json() logger.info(f"Route common Practice Data ==>>>> {data}") - result = CommonDataService.available_practices(data) - return jsonify(result) + response = CommonDataService.available_practices(data) + return response + # return jsonify(result) #=================================================== CommonDataService