Merge branch 'main' into dev

This commit is contained in:
Owen
2026-04-02 17:39:25 -04:00
2 changed files with 8 additions and 2 deletions

View File

@@ -774,8 +774,12 @@ function ProxyResourceTargetsForm({
}
toast({
title: t("settingsUpdated"),
description: t("settingsUpdatedDescription")
title: targets.length === 0
? t("targetTargetsCleared")
: t("settingsUpdated"),
description: targets.length === 0
? t("targetTargetsClearedDescription")
: t("settingsUpdatedDescription")
});
setTargetsToRemove([]);