Skip to content

Commit

Permalink
fix(ui): correct the placeholder of LDAP signin form (#3657)
Browse files Browse the repository at this point in the history
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
  • Loading branch information
liangfung and autofix-ci[bot] authored Jan 9, 2025
1 parent 61b15b7 commit 20afd93
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions ee/tabby-ui/app/auth/signin/components/ldap-signin-form.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import { zodResolver } from '@hookform/resolvers/zod'
import { useForm } from 'react-hook-form'
import * as z from 'zod'

import { PLACEHOLDER_EMAIL_FORM } from '@/lib/constants'
import { graphql } from '@/lib/gql/generates'
import { useSignIn } from '@/lib/tabby/auth'
import { useMutation } from '@/lib/tabby/gql'
Expand Down Expand Up @@ -75,7 +74,7 @@ export default function LdapSignInForm({
<FormLabel className="leading-5">Username</FormLabel>
<FormControl>
<Input
placeholder={PLACEHOLDER_EMAIL_FORM}
placeholder="name"
autoCapitalize="none"
autoCorrect="off"
{...field}
Expand Down

0 comments on commit 20afd93

Please sign in to comment.