Skip to content

Commit

Permalink
Deleted import
Browse files Browse the repository at this point in the history
  • Loading branch information
martinaCampoli committed Dec 10, 2024
1 parent 5725711 commit 6aedfea
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ import { useTranslation } from 'react-i18next'
import AccountBalanceIcon from '@mui/icons-material/AccountBalance'
import type { CatalogEService } from '@/api/api.generatedTypes'
import { useQueryClient } from '@tanstack/react-query'
import { t } from 'i18next'

interface CatalogCardProps {
eservice: CatalogEService
Expand Down Expand Up @@ -78,7 +77,7 @@ export const CatalogCard: React.FC<CatalogCardProps> = ({ eservice, disabled })

<CardActions sx={{ justifyContent: 'end', alignItems: 'end', flex: 1 }}>
<Stack direction="row" spacing={2}>
<Tooltip open={disabled ? undefined : false} title={t('subscribeTooltip')} arrow>
<Tooltip open={disabled ? undefined : false} title={tCommon('subscribeTooltip')} arrow>
<span>
<Link
as="button"
Expand Down

0 comments on commit 6aedfea

Please sign in to comment.