diff --git a/apps/flask/main.py b/apps/flask/main.py index fb5f69b..68ac38e 100644 --- a/apps/flask/main.py +++ b/apps/flask/main.py @@ -117,7 +117,7 @@ def get_data_from_firestore(): give_list.extend(data['give']) result = {"need": need_list, "give": give_list} - return result, 200 + return jsonify(result), 200