diff --git a/integration/bazel/src/app.component.ts b/integration/bazel/src/app.component.ts index 0801972313..6b0e7cc515 100644 --- a/integration/bazel/src/app.component.ts +++ b/integration/bazel/src/app.component.ts @@ -15,6 +15,6 @@ export class AppComponent { constructor(private http: HttpClient) {} time$: Observable = - this.http.get('http://worldclockapi.com/api/json/pst/now') - .pipe(map((result: any) => result.currentDateTime), startWith(['...'])); + this.http.get('http://worldtimeapi.org/api/timezone/America/Los_Angeles.json') + .pipe(map((result: any) => result.datetime), startWith(['...'])); }