Skip to content

Commit

Permalink
Patch linter
Browse files Browse the repository at this point in the history
  • Loading branch information
MatissJanis committed Dec 8, 2024
1 parent b970ff9 commit f724974
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import React, { useEffect, useState } from 'react';
import { DialogTrigger } from 'react-aria-components';
import { useTranslation } from 'react-i18next';
import { useDispatch } from 'react-redux';
import { DialogTrigger } from 'react-aria-components';

import { pushModal } from 'loot-core/client/actions';
import { send } from 'loot-core/src/platform/client/fetch';
Expand Down Expand Up @@ -246,7 +246,10 @@ export function CreateAccountModal({ upgradingAccountId }: CreateAccountProps) {
</ButtonWithLoading>
{isGoCardlessSetupComplete && (
<DialogTrigger>
<Button variant="bare" aria-label="GoCardless menu">
<Button
variant="bare"
aria-label={t('GoCardless menu')}
>
<SvgDotsHorizontalTriple
width={15}
height={15}
Expand Down Expand Up @@ -306,7 +309,7 @@ export function CreateAccountModal({ upgradingAccountId }: CreateAccountProps) {
</ButtonWithLoading>
{isSimpleFinSetupComplete && (
<DialogTrigger>
<Button variant="bare" aria-label="SimpleFIN menu">
<Button variant="bare" aria-label={t('SimpleFIN menu')}>
<SvgDotsHorizontalTriple
width={15}
height={15}
Expand Down

0 comments on commit f724974

Please sign in to comment.