diff --git a/apps/wrapper/web-portal/src/App.js b/apps/wrapper/web-portal/src/App.js
index f1b665242bc3a4e65649a8ac30e3677f6b9af32d..ece80c96fddb7c94c9a313b01058241d27c37c70 100644
--- a/apps/wrapper/web-portal/src/App.js
+++ b/apps/wrapper/web-portal/src/App.js
@@ -54,6 +54,7 @@ import { getCookie, getLocalTimeInISOFormat } from "./utils";
 import Toast from "./components/Toast";
 
 function App() {
+  console.log("Good afternoon Sharath !!!!!!!")
   const loggedInUser = getCookie("regulator")?.[0];
   const [spinner, setSpinner] = useState(false);
   const [toast, setToast] = useState({
@@ -84,13 +85,13 @@ function App() {
 
   useEffect(() => {
     if (toast) {
-      setTimeout(() => {
+    /*   setTimeout(() => {
         setToast({
           toastOpen: false,
           toastMsg: "",
           toastType: "",
         });
-      }, 3000);
+      }, 3000); */
     }
   }, [toast]);