nicolium: fix

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-02-27 01:07:55 +01:00
parent 08d6749a96
commit acaf8deb33

View File

@ -1,7 +1,7 @@
import { Link as Comp, type LinkProps } from '@tanstack/react-router';
import React from 'react';
const Link = (props: LinkProps) => (
const Link = (props: LinkProps & React.HTMLAttributes<HTMLAnchorElement>) => (
<Comp {...props} className='text-primary-600 hover:underline dark:text-primary-400' />
);