Skip to content

Commit 85795f1

Browse files
committed
removed redundant react library call
1 parent a4b9fbe commit 85795f1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/TestCase/AccTestCase.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ const AccTestCase = () => {
2828

2929
const [{ filePathMap }] = useContext<any>(GlobalContext);
3030

31-
const handleChangeDescribeText = (e: React.ChangeEvent<HTMLInputElement>) => {
31+
const handleChangeDescribeText = (e: ChangeEvent<HTMLInputElement>) => {
3232
const text = e.target.value;
3333
const describeId = e.target.id;
3434
dispatchToAccTestCase(updateDescribeText(text, describeId));
3535
};
3636

37-
const handleChangeItStatementText = (e: React.ChangeEvent<HTMLInputElement>) => {
37+
const handleChangeItStatementText = (e: ChangeEvent<HTMLInputElement>) => {
3838
const text = e.target.value;
3939
const itId = e.target.id;
4040
dispatchToAccTestCase(updateItStatementText(text, itId));

0 commit comments

Comments
 (0)