From cb899a76ab8f637741e6c2eb0761e4b4b3ec0944 Mon Sep 17 00:00:00 2001 From: Yash Maheshwari Date: Fri, 14 Jul 2023 11:45:44 +0530 Subject: [PATCH] Improved: the position for the toast --- src/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index e149e434..4c3f2e9e 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -19,7 +19,7 @@ const showToast = async (message: string) => { .create({ message, duration: 3000, - position: 'top' + position: 'bottom' }) return toast.present(); }