diff --git a/packages/pl-fe/src/reducers/lists.test.ts b/packages/pl-fe/src/reducers/lists.test.ts deleted file mode 100644 index 911d4f3a9..000000000 --- a/packages/pl-fe/src/reducers/lists.test.ts +++ /dev/null @@ -1,9 +0,0 @@ -import { Map as ImmutableMap } from 'immutable'; - -import reducer from './lists'; - -describe('lists reducer', () => { - it('should return the initial state', () => { - expect(reducer(undefined, {} as any)).toEqual(ImmutableMap()); - }); -}); diff --git a/packages/pl-fe/src/reducers/lists.ts b/packages/pl-fe/src/reducers/lists.ts deleted file mode 100644 index 02700cfba..000000000 --- a/packages/pl-fe/src/reducers/lists.ts +++ /dev/null @@ -1,14 +0,0 @@ -import type { List } from 'pl-api'; - -type State = Record; - -const initialState: State = {}; - -const lists = (state: State = initialState, action: any) => { - switch (action.type) { - default: - return state; - } -}; - -export { lists as default };