Skip to content

Commit

Permalink
fix: segment override assignment (#3734)
Browse files Browse the repository at this point in the history
  • Loading branch information
kyle-ssg authored Apr 9, 2024
1 parent db3ad2a commit a859902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/common/providers/withSegmentOverrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ export default (WrappedComponent) => {
const multiVariates =
res2 &&
res2.results.find(
(mv) => (mv.feature_segment = f.feature_segment),
(mv) => mv.feature_segment === f.feature_segment,
)
results[index].multivariate_feature_state_values =
(multiVariates &&
Expand Down

0 comments on commit a859902

Please sign in to comment.