fix: proper saving text after edit

This commit is contained in:
amhsirak
2025-11-05 23:32:55 +05:30
parent f2453a3c81
commit 22c1addddb

View File

@@ -182,7 +182,7 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
boxShadow: 'none',
}}
>
{isLoading ? t("buttons.saving") : (saveButtonText || t("buttons.save"))}
{isLoading ? t("Saving...") : (saveButtonText || t("buttons.save"))}
</Button>
)}
</Box>