File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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 ) ) ;
You can’t perform that action at this time.
0 commit comments