Skip to content

Commit

Permalink
fix fontFamily
Browse files Browse the repository at this point in the history
  • Loading branch information
eeeqeee committed Jan 22, 2024
1 parent b6394a9 commit 10a7d9e
Showing 1 changed file with 10 additions and 5 deletions.
15 changes: 10 additions & 5 deletions apps/frontend/src/app/Components/AddArtInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,21 @@ import { Link as RouterLink } from 'react-router-dom'
export default function AddArtInfo() {
const { t } = useTranslation('artifact')
return (
<Trans t={t} i18nKey={"noArtifacts"}>
<Alert severity="info" variant="filled">
<Alert severity="info" variant="filled">
<Trans t={t} i18nKey={'noArtifacts'}>
{
"Looks like you haven't added any artifacts yet. If you want, there are "
}
<Link color="warning.main" component={RouterLink} to="/scanner">
<Link
color="warning.main"
component={RouterLink}
to="/scanner"
fontFamily="inherit"
>
automatic scanners
</Link>
{' that can speed up the import process!'}
</Alert>
</Trans>
</Trans>
</Alert>
)
}

0 comments on commit 10a7d9e

Please sign in to comment.