fix(i18n): use existing provider delete label

Replace a missing deleteConnection message lookup with the
existing delete label to avoid the provider-page runtime i18n
overlay.
This commit is contained in:
Kfir Amar
2026-03-14 22:18:41 +02:00
parent 245243c7e7
commit f2ecefb54a

View File

@@ -2540,7 +2540,7 @@ function ConnectionRow({
<button
onClick={onDelete}
className="p-2 hover:bg-red-500/10 rounded text-red-500"
title={t("deleteConnection")}
title={t("delete")}
>
<span className="material-symbols-outlined text-[18px]">delete</span>
</button>