diff --git a/.github/workflows/ngrx-hateoas.yml b/.github/workflows/ngrx-hateoas.yml index 131e1b8..5869fc8 100644 --- a/.github/workflows/ngrx-hateoas.yml +++ b/.github/workflows/ngrx-hateoas.yml @@ -15,7 +15,7 @@ jobs: - name: Install Node uses: actions/setup-node@v4 with: - node-version: 22.x + node-version: 26.x # Restore dependencies - name: Restore dependencies diff --git a/apps/playground/src/app/app.config.ts b/apps/playground/src/app/app.config.ts index a4dc618..c67d135 100644 --- a/apps/playground/src/app/app.config.ts +++ b/apps/playground/src/app/app.config.ts @@ -2,14 +2,13 @@ import { ApplicationConfig, provideZonelessChangeDetection } from '@angular/core import { provideRouter } from '@angular/router'; import { routes } from './app.routes'; -import { provideHttpClient } from '@angular/common/http'; +import { provideHttpClient, withXhr } from '@angular/common/http'; import { provideHateoas } from '@angular-architects/ngrx-hateoas'; export const appConfig: ApplicationConfig = { providers: [ provideZonelessChangeDetection(), provideRouter(routes), - provideHttpClient(), provideHateoas() ] }; diff --git a/apps/playground/src/app/flight/shared/flight-connection-form/flight-connection-form.component.html b/apps/playground/src/app/flight/shared/flight-connection-form/flight-connection-form.component.html index 85a6793..3640019 100644 --- a/apps/playground/src/app/flight/shared/flight-connection-form/flight-connection-form.component.html +++ b/apps/playground/src/app/flight/shared/flight-connection-form/flight-connection-form.component.html @@ -3,18 +3,18 @@