From 5c724539b5135a24fc070ca14b9773cd1d72d244 Mon Sep 17 00:00:00 2001 From: yaso Date: Mon, 13 Jan 2025 12:26:45 +0200 Subject: [PATCH] comment out test prints --- .../mzansi_profile/profile_user_update.dart | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/Frontend/lib/mih_packages/mzansi_profile/profile_user_update.dart b/Frontend/lib/mih_packages/mzansi_profile/profile_user_update.dart index c1fc021a..5c6353d2 100644 --- a/Frontend/lib/mih_packages/mzansi_profile/profile_user_update.dart +++ b/Frontend/lib/mih_packages/mzansi_profile/profile_user_update.dart @@ -218,8 +218,12 @@ class _ProfileUserUpdateState extends State { } Future submitForm() async { + // print("============\nsubmiit form\n================="); if (isFieldsFilled()) { if (oldProPicName != proPicController.text) { + // print("here 1"); + // print("Pro File Name: ${proPic!.name}"); + // print("Pro File Bytes: ${proPic!.bytes}"); await uploadSelectedFile(proPic); } await updateUserApiCall(); @@ -308,6 +312,13 @@ class _ProfileUserUpdateState extends State { }, ), ), + // const SizedBox(height: 10.0), + // MIHTextField( + // controller: proPicController, + // hintText: "Pro Pic", + // editable: true, + // required: true, + // ), const SizedBox(height: 10.0), MIHTextField( controller: usernameController,