diff --git a/docs/terms-and-condition.md b/docs/terms-and-condition.md index f9654a3e..7d0b1b84 100644 --- a/docs/terms-and-condition.md +++ b/docs/terms-and-condition.md @@ -41,7 +41,7 @@ These Terms constitute the entire agreement between you and Canopas regarding yo These Terms and Conditions will be governed by and construed in accordance with the laws of India, without regard to its conflict of law provisions. -This clarifies that Indian law applies to any disputes arising from the use of the Cloud Gallery app developed by Canopas Software LLP. +This clarifies that Indian law applies to any disputes arising from the use of the Khelo app developed by Canopas Software LLP. #### 9. Changes to the Terms diff --git a/khelo/lib/ui/flow/settings/support/contact_support_view_model.dart b/khelo/lib/ui/flow/settings/support/contact_support_view_model.dart index 1464473a..69bf906b 100644 --- a/khelo/lib/ui/flow/settings/support/contact_support_view_model.dart +++ b/khelo/lib/ui/flow/settings/support/contact_support_view_model.dart @@ -54,7 +54,10 @@ class ContactSupportViewStateNotifier ); } - void _uploadAttachments({required String path, required String name}) async { + Future _uploadAttachments({ + required String path, + required String name, + }) async { try { state = state.copyWith(attachments: [ ...state.attachments, @@ -100,7 +103,7 @@ class ContactSupportViewStateNotifier String _generateImageFilename() { DateTime now = DateTime.now(); - return "IMG_${now.year}${now.month}${now.day}${now.hour}${now.minute}${now.second}${now.millisecond}"; + return "IMG_${now.year}${now.month}${now.day}${now.hour}${now.minute}${now.second}${now.millisecond}${now.microsecond}"; } void pickAttachments() async {