[WIP] [FIX] Translate Schedule '(No payee)' (#5777)

This commit is contained in:
milanalexandre
2025-09-22 23:56:41 +02:00
committed by GitHub
parent 5a888d44b9
commit 753a105b3d
2 changed files with 8 additions and 1 deletions

View File

@@ -510,6 +510,7 @@ function PayeeCell({
onNavigateToSchedule,
}: PayeeCellProps) {
const isCreatingPayee = useRef(false);
const { t } = useTranslation();
const dispatch = useDispatch();
@@ -639,7 +640,7 @@ function PayeeCell({
}}
formatter={() => {
if (!displayPayee && isPreview) {
return '(No payee)';
return t('(No payee)');
}
return displayPayee;
}}

View File

@@ -0,0 +1,6 @@
---
category: Bugfix
authors: [milanalexandre]
---
Translated (No payee) for a scheduled transaction