mirror of
https://github.com/omnivore-app/omnivore.git
synced 2026-03-11 08:54:26 +00:00
Fix props on keyboard actions, prevents infinite rebuild loop
This commit is contained in:
parent
dc99806a5e
commit
7cc901bab8
1 changed files with 2 additions and 2 deletions
|
|
@ -114,7 +114,7 @@ function SavedSearches(props: LibraryFilterMenuProps): JSX.Element {
|
|||
},
|
||||
}
|
||||
}),
|
||||
[props]
|
||||
[]
|
||||
)
|
||||
|
||||
return (
|
||||
|
|
@ -151,7 +151,7 @@ function Subscriptions(props: LibraryFilterMenuProps): JSX.Element {
|
|||
},
|
||||
}
|
||||
}),
|
||||
[subscriptions, props]
|
||||
[subscriptions]
|
||||
)
|
||||
|
||||
return (
|
||||
|
|
|
|||
Loading…
Reference in a new issue