From e805e5fd410f36e793c4e8d59f2746b00e624ee3 Mon Sep 17 00:00:00 2001 From: Hafid Nur Date: Sat, 5 Apr 2025 08:48:53 +0700 Subject: [PATCH] fix: update Toast success/error message --- .../src/app/gacha-roll/_components/modal-add-item.tsx | 4 ++-- .../src/app/gacha-roll/_components/modal-update-item.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/apps/backoffice/src/app/gacha-roll/_components/modal-add-item.tsx b/apps/backoffice/src/app/gacha-roll/_components/modal-add-item.tsx index 2d13e2d..46a59ea 100644 --- a/apps/backoffice/src/app/gacha-roll/_components/modal-add-item.tsx +++ b/apps/backoffice/src/app/gacha-roll/_components/modal-add-item.tsx @@ -119,8 +119,8 @@ const StepTwo = ({ onClose, handleAddItem, resetStep }: IStepTwoProps) => { resetStep, handleAddItem, { - success: 'Item ditambahkan ke gacha item', - error: 'Item gagal ditambahkan ke gacha item', + success: 'Item ditambahkan ke roll gacha', + error: 'Item gagal ditambahkan ke roll gacha', } ); diff --git a/apps/backoffice/src/app/gacha-roll/_components/modal-update-item.tsx b/apps/backoffice/src/app/gacha-roll/_components/modal-update-item.tsx index db9f000..770f867 100644 --- a/apps/backoffice/src/app/gacha-roll/_components/modal-update-item.tsx +++ b/apps/backoffice/src/app/gacha-roll/_components/modal-update-item.tsx @@ -127,8 +127,8 @@ const StepTwo = ({ onClose, handleUpdateItem, resetStep }: IStepTwoProps) => { resetStep, handleUpdateItem, { - success: 'Item ditambahkan ke gacha item', - error: 'Item gagal ditambahkan ke gacha item', + success: 'Perubahan item roll berhasil dilakukan', + error: 'Perubahan item roll gagal dilakukan', } );