We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 35dbd29 commit 83af669Copy full SHA for 83af669
libs/environment-variables-example-app-base/src/lib/variable-selection.component.ts
@@ -20,7 +20,7 @@ export class VariableSelectionComponent {
20
public selectedVariable = EnvironmentVariable.Foo;
21
private readonly router = inject(Router);
22
public readonly isRouteConfigLoading$ = createRouteConfigLoadingObservable(this.router);
23
- private readonly env: EnvironmentVariablesService<EnvironmentVariable> = inject(EnvironmentVariablesService);
+ private readonly env = inject(EnvironmentVariablesService<EnvironmentVariable>);
24
25
constructor() {
26
for (const variableName of Object.values(EnvironmentVariable)) {
0 commit comments