Skip to content

Commit

Permalink
removed unnecessary cast. Added component owner
Browse files Browse the repository at this point in the history
Signed-off-by: jarebudev <[email protected]>
  • Loading branch information
jarebudev committed Dec 22, 2024
1 parent 10f70d1 commit 2cee133
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions .github/component_owners.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ components:
- markphelps
libs/providers/flipt-web:
- markphelps
libs/providers/unleash-web:
- jarebudev

ignored-authors:
- renovate-bot
2 changes: 1 addition & 1 deletion libs/providers/unleash-web/src/lib/unleash-web-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ export class UnleashWebProvider implements Provider {
}

if (evaluatedVariant.name === 'disabled') {
value = defaultValue as T;
value = defaultValue;
} else {
variant = evaluatedVariant.name;
value = evaluatedVariant.payload?.value;
Expand Down

0 comments on commit 2cee133

Please sign in to comment.