nicolium: WHY

Signed-off-by: nicole mikołajczyk <git@mkljczk.pl>
This commit is contained in:
nicole mikołajczyk
2026-03-05 12:15:41 +01:00
parent 28de0cce6e
commit a2463b9a82
2 changed files with 1 additions and 2 deletions

View File

@ -111,7 +111,6 @@ const Button = React.forwardRef<HTMLButtonElement | HTMLAnchorElement, IButton>(
to={props.to}
params={props.params}
search={props.search}
tabIndex={-1}
>
{buttonChildren}
</Link>

View File

@ -55,7 +55,7 @@ const LoginForm: React.FC<ILoginForm> = ({ isLoading, handleSubmit }) => {
<FormGroup
labelText={passwordLabel}
hintText={
<Link to='/reset-password' className='hover:underline' tabIndex={-1}>
<Link to='/reset-password' className='hover:underline'>
<FormattedMessage id='login.reset_password_hint' defaultMessage='Trouble logging in?' />
</Link>
}