Skip to content

Commit 5279dba

Browse files
fix(qs): ignore storage param
1 parent b12cc26 commit 5279dba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/autocomplete-plugin-recent-searches/src/createLocalStorageRecentSearchesPlugin.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export type CreateRecentSearchesLocalStorageOptions<
3838

3939
type LocalStorageRecentSearchesPluginOptions<
4040
TItem extends RecentSearchesItem
41-
> = CreateRecentSearchesPluginParams<TItem> &
41+
> = Pick<CreateRecentSearchesPluginParams<TItem>, 'getTemplates'> &
4242
CreateRecentSearchesLocalStorageOptions<TItem>;
4343

4444
export function createLocalStorageRecentSearchesPlugin<

0 commit comments

Comments
 (0)