Skip to content

Commit

Permalink
Fix feature lineage bug to not attempt to retrieve when it is not ena…
Browse files Browse the repository at this point in the history
…bled (#2221)

Signed-off-by: Kristen Armes <[email protected]>
  • Loading branch information
kristenarmes authored Dec 13, 2023
1 parent 224a6fc commit 36159bd
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -269,7 +269,9 @@ export const FeaturePage: React.FC<FeaturePageProps> = ({
setKey(newKey);
getFeatureDispatch(newKey, index, source);
getFeatureCodeDispatch(newKey);
getFeatureLineageDispatch(newKey);
if (isFeatureListLineageEnabled()) {
getFeatureLineageDispatch(newKey);
}
getFeaturePreviewDispatch({
version,
feature_group: group,
Expand Down

0 comments on commit 36159bd

Please sign in to comment.