Ver Fonte

Fix case

Neeraj Gupta há 2 anos atrás
pai
commit
32e6e32e47
1 ficheiros alterados com 2 adições e 2 exclusões
  1. 2 2
      lib/utils/magic_util.dart

+ 2 - 2
lib/utils/magic_util.dart

@@ -156,14 +156,14 @@ Future<void> _updatePublicMetadata(
   }
   ProgressDialog dialog;
   if (context != null) {
-    dialog = createProgressDialog(context, 'please wait...');
+    dialog = createProgressDialog(context, 'Please wait...');
     await dialog.show();
   }
   try {
     final Map<String, dynamic> update = {key: value};
     await FileMagicService.instance.updatePublicMagicMetadata(files, update);
     if (context != null) {
-      showShortToast(context, 'done');
+      showShortToast(context, 'Done');
       await dialog.hide();
     }