fix(space): silence microstep status toast

This commit is contained in:
2026-03-17 21:14:32 +09:00
parent 167e64534f
commit f580ab8a72
3 changed files with 1 additions and 13 deletions

View File

@@ -118,15 +118,7 @@ export const SpaceFocusHudWidget = ({
setSavingIntent(true);
try {
const didUpdate = await onIntentUpdate({ microStep: nextStep });
if (didUpdate) {
if (nextStep) {
onStatusMessage({ message: copy.space.focusHud.refocusSaved });
} else {
onStatusMessage({ message: copy.space.focusHud.microStepCleared });
}
}
return didUpdate;
return await onIntentUpdate({ microStep: nextStep });
} finally {
setSavingIntent(false);
}