Skip to content

Commit cbe9761

Browse files
author
Tamas Cseh
committed
Fix: Compile error
1 parent 1a849f3 commit cbe9761

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

projects/rf2-better-ui/src/app/components/garage-handler/garage-handler.component.ts

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import { Component, HostListener, OnInit, ViewEncapsulation } from '@angular/core';
2+
import { HttpClient } from '@angular/common/http';
23
import { arrowNavigation, waitForElement } from '../../utils/utils';
34
import { RaceButtonService } from '../../services/race-button.service';
45

@@ -18,7 +19,8 @@ export class GarageHandlerComponent implements OnInit {
1819
return arrowNavigation(event, this.listItems, 'main section div.selected');
1920
}
2021

21-
constructor(private raceButtonService: RaceButtonService) {
22+
constructor(private raceButtonService: RaceButtonService,
23+
private http: HttpClient) {
2224
}
2325

2426
ngOnInit(): void {

0 commit comments

Comments
 (0)