Skip to content

Commit

Permalink
resolve a ts build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
dsmmcken committed Aug 22, 2022
1 parent be6a953 commit 8c61c9b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions packages/redux/src/actions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,7 @@ export const setWorkspaceStorage: PayloadActionCreator<WorkspaceStorage> = works
payload: workspaceStorage,
});

export const setCommandHistoryStorage: PayloadActionCreator<
Record<string, unknown>
> = commandHistoryStorage => ({
export const setCommandHistoryStorage: PayloadActionCreator<unknown> = commandHistoryStorage => ({
type: SET_COMMAND_HISTORY_STORAGE,
payload: commandHistoryStorage,
});
Expand Down

0 comments on commit 8c61c9b

Please sign in to comment.