Skip to content

Commit 22c1add

Browse files
committed
fix: proper saving text after edit
1 parent f2453a3 commit 22c1add

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/robot/pages/RobotConfigPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ export const RobotConfigPage: React.FC<RobotConfigPageProps> = ({
182182
boxShadow: 'none',
183183
}}
184184
>
185-
{isLoading ? t("buttons.saving") : (saveButtonText || t("buttons.save"))}
185+
{isLoading ? t("Saving...") : (saveButtonText || t("buttons.save"))}
186186
</Button>
187187
)}
188188
</Box>

0 commit comments

Comments
 (0)