Skip to content

Commit

Permalink
use props correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
EDsCODE committed Mar 19, 2024
1 parent 3cb6411 commit 7e2b338
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ export const taxonomicFilterLogic = kea<taxonomicFilterLogicType>([
],
})),
selectors({
selectedItemMeta: [(_, p) => [p.filter], (filter) => filter],
selectedItemMeta: [() => [(_, props) => props.filter], (filter) => filter],
taxonomicFilterLogicKey: [
(_, p) => [p.taxonomicFilterLogicKey],
(taxonomicFilterLogicKey) => taxonomicFilterLogicKey,
Expand Down

0 comments on commit 7e2b338

Please sign in to comment.