From 22c1addddb3a41a4d8f01006c9dcc4218334b4d8 Mon Sep 17 00:00:00 2001 From: amhsirak Date: Wed, 5 Nov 2025 23:32:55 +0530 Subject: [PATCH] fix: proper saving text after edit --- src/components/robot/pages/RobotConfigPage.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/robot/pages/RobotConfigPage.tsx b/src/components/robot/pages/RobotConfigPage.tsx index 6675aa3d..52ea2b21 100644 --- a/src/components/robot/pages/RobotConfigPage.tsx +++ b/src/components/robot/pages/RobotConfigPage.tsx @@ -182,7 +182,7 @@ export const RobotConfigPage: React.FC = ({ boxShadow: 'none', }} > - {isLoading ? t("buttons.saving") : (saveButtonText || t("buttons.save"))} + {isLoading ? t("Saving...") : (saveButtonText || t("buttons.save"))} )}