mirror of
https://github.com/actualbudget/actual.git
synced 2026-04-30 10:14:53 -05:00
* 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:
@@ -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 => {
|
||||
|
||||
Reference in New Issue
Block a user