Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 42f0554

Browse files
committed
Lint
1 parent 5a0f9ac commit 42f0554

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

site/.eslintignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ coverage
88
.next
99
storybook-static
1010
test-results
11-
site/**/*.typegen.ts
11+
**/*.typegen.ts

site/src/components/SignIn/SignInForm.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export const SignInForm: React.FC<SignInFormProps> = ({ isLoading, authErrorMess
8888
variant="outlined"
8989
/>
9090
{authErrorMessage && (
91-
<FormHelperText data-testid={"sign-in-error"} error>
91+
<FormHelperText data-testid="sign-in-error" error>
9292
{authErrorMessage}
9393
</FormHelperText>
9494
)}

site/src/pages/login.test.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React from "react"
2-
import { act, fireEvent, screen, waitFor } from "@testing-library/react"
2+
import { act, fireEvent, screen } from "@testing-library/react"
33
import { history, render } from "../test_helpers"
44
import { SignInPage } from "./login"
55
import { server } from "../test_helpers/server"

0 commit comments

Comments
 (0)