Skip to content

Commit df49911

Browse files
committed
resolve TypeScript error by casting initialState to any
1 parent 0b079fb commit df49911

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

packages/compass-collection/src/components/mock-data-generator-modal/mock-data-generator-modal.spec.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,10 +62,9 @@ describe('MockDataGeneratorModal', () => {
6262
},
6363
};
6464

65-
// @ts-expect-error // TODO: fix ts error
6665
const store = createStore(
6766
collectionTabReducer,
68-
initialState,
67+
initialState as any,
6968
applyMiddleware(thunk.withExtraArgument(mockServices))
7069
);
7170

0 commit comments

Comments
 (0)