Skip to content

Commit

Permalink
refactor(app/store): rm unused type parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
exuanbo committed Dec 17, 2023
1 parent e089811 commit 57c5fe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/store/enhancers/injectStoreExtension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import type { Store, StoreEnhancer } from '@reduxjs/toolkit'

export const injectStoreExtension =
<StoreExtension extends {}>(
createExtension: <NextStore extends Store>(store: NextStore) => StoreExtension,
createExtension: (store: Store) => StoreExtension,
): StoreEnhancer<StoreExtension> =>
(next) =>
(...args) => {
Expand Down

0 comments on commit 57c5fe7

Please sign in to comment.