Fix translation issue #6828 (#6845)

* Fix translation issue #6828

* Add release note

* [autofix.ci] apply automated fixes

* update release number

---------

Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
Nam
2026-02-04 14:36:37 -05:00
committed by GitHub
parent 06d31ce035
commit 5388a115e9
2 changed files with 10 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
import React, { type ReactNode } from 'react';
import { useTranslation } from 'react-i18next';
import { View } from '@actual-app/components/view';
@@ -15,13 +16,15 @@ export function MissingReportCard({
onRemove,
children,
}: MissingReportCardProps) {
const { t } = useTranslation();
return (
<ReportCard
isEditing={isEditing}
menuItems={[
{
name: 'remove',
text: 'Remove',
text: t('Remove'),
},
]}
onMenuSelect={item => {