Skip to content

Commit 7eac8ae

Browse files
authored
fix: missing HttpModule dependency
Although HttpModule is going to be deprecated in v5, we should have it in imports until you switch to use HttpClientModule.
1 parent 8c4880e commit 7eac8ae

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

angular-oauth2-oidc/src/index.ts

+2-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,8 @@ export * from './tokens';
2525

2626
@NgModule({
2727
imports: [
28-
CommonModule
28+
CommonModule,
29+
HttpModule
2930
],
3031
declarations: [
3132
],

0 commit comments

Comments
 (0)