Skip to content

Commit d20145f

Browse files
authored
Merge pull request #2035 from Northeastern-Electric-Racing/#1500-Remove-any-type-from-AppMain.test.tsx
#1500: Remove any types from AppMain.test.tsx
2 parents 5190754 + de9ef70 commit d20145f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/frontend/src/tests/app/AppMain.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ vi.mock('../../app/AppPublic', () => {
1616
vi.mock('../../app/AppContext', () => {
1717
return {
1818
__esModule: true,
19-
default: (props: any) => (
19+
default: (props: { children: React.ReactNode }) => (
2020
<div>
2121
context
2222
<div>{props.children}</div>

0 commit comments

Comments
 (0)