Merge pull request #872 from getmaxun/misc-fixes

fix: proper saving text after edit
This commit is contained in:
Karishma
2025-11-05 23:33:24 +05:30
committed by GitHub

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>