diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml
index fd3618f..bb822e8 100644
--- a/.github/workflows/main.yml
+++ b/.github/workflows/main.yml
@@ -60,12 +60,13 @@ jobs:
         uses: ncipollo/release-action@v1
         with:
           artifacts: "build/app/outputs/apk/release/*"
-          tag: v2.0.9.1
+          tag: v2.0.9.2
           token: ${{ secrets.TOKEN }}
-          name: "beta-v2.0.9.1"
+          name: "beta-v2.0.9.2"
           body: |
-            ## What's New in v2.0.9.1
+            ## What's New in v2.0.9.2
             
+            - Improved Error Handlers.
             - **Redis Cloud Implementation and Fetching in Beta Phase**
             - **Structure of Redis added to Clean Architecture
             - **Added Redis-base to support syncfusion**
diff --git a/README.md b/README.md
index 386f0ee..26565f0 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
     <a href="https://github.com/ARYPROGRAMMER/Mindful-App/actions">
         <img src="https://github.com/travisjeffery/timecop/workflows/CI/badge.svg" alt="Build Status"/>
     </a>
-    <img src="https://img.shields.io/badge/version-2.0.9.1-green" alt="Version"/>
+    <img src="https://img.shields.io/badge/version-2.0.9.2-red" alt="Version"/>
 </p>
 
 <p align="center">
@@ -17,8 +17,9 @@
 
 **APP STATUS** : ALL CORE FUNCTIONALITIES WORKING (Deployed NodeJs & Postgresql on Render)
 
-## What's New in v2.0.9.1 (Beta Trial Phase for Redis)
+## What's New in v2.0.9.2 (Beta Trial Phase for Redis)
 
+            - Improved Error Handlers.
             - **Redis Cloud Implementation and Fetching in Beta Phase**
             - **Structure of Redis added to Clean Architecture
             - **Added Redis-base to support syncfusion**
diff --git a/lib/features/meditation/presentation/pages/meditation_page.dart b/lib/features/meditation/presentation/pages/meditation_page.dart
index bedc1fc..4e76cdd 100644
--- a/lib/features/meditation/presentation/pages/meditation_page.dart
+++ b/lib/features/meditation/presentation/pages/meditation_page.dart
@@ -807,7 +807,7 @@ class _MeditationPageState extends State<MeditationPage> {
                       }
 
                       if (state is MoodDataError){
-                        return Text(state.message);
+                        return const Text("No Data Found",textAlign:TextAlign.center,style: TextStyle(color: Colors.red,fontWeight: FontWeight.bold),);
                       }
                       return Container();
 
diff --git a/lib/main.dart b/lib/main.dart
index cb284f9..c6fe077 100644
--- a/lib/main.dart
+++ b/lib/main.dart
@@ -59,7 +59,7 @@ class _MyAppState extends State<MyApp> {
     final idval;
     bool google = mybox.get('google').toString() == 'true';
     if (google) {
-      idval = "${GoogleSignInApi.details()?.email}-google";
+      idval = "aryasingh8405Ggmail.com-google"; //temp
     }else{
       idval = FirebaseAuth.instance.currentUser?.email.toString();
     }