Skip to content

Commit

Permalink
Merge pull request #1668 from ever-co/fix/verify-code-translation
Browse files Browse the repository at this point in the history
fix: Verification Code Translation
  • Loading branch information
evereq authored Oct 27, 2023
2 parents 9e1f91a + 4976c5d commit c1eaccc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/web/lib/features/unverified-email.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { useTranslation } from 'react-i18next';

export function UnverifiedEmail() {
const { user } = useAuthenticateUser();
const { t } = useTranslation('home');
const { t } = useTranslation();
const [verified, setVefified] = useState(true);

Check warning on line 13 in apps/web/lib/features/unverified-email.tsx

View workflow job for this annotation

GitHub Actions / Cspell

Unknown word (Vefified)

const { loading: resendLinkLoading, queryCall: resendLinkQueryCall } = useQuery(resentVerifyUserLinkAPI);
Expand Down

0 comments on commit c1eaccc

Please sign in to comment.