Skip to content

Commit 221a853

Browse files
committed
Fix TypeScript types in tab persistence tests
1 parent b1495c3 commit 221a853

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/store/reducers/query/__test__/tabPersistence.test.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import queryReducer, {setResultTab} from '../query';
2+
import type {QueryState} from '../types';
23

34
describe('QueryResultViewer tab persistence integration', () => {
4-
const initialState = {
5+
const initialState: QueryState = {
56
input: '',
67
history: {
78
queries: [],

0 commit comments

Comments
 (0)