1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

fix: use strategyName instead of name property for component to load (#8983)

This commit is contained in:
David Leek 2024-12-16 09:18:58 +01:00 committed by GitHub
parent eb0699ca03
commit 76dfa3c979
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -24,7 +24,7 @@ export const MilestoneStrategyType = ({
return null;
}
switch (strategy.name) {
switch (strategy.strategyName) {
case 'default':
return <DefaultStrategy strategyDefinition={strategyDefinition} />;
case 'flexibleRollout':