Skip to content

Commit

Permalink
Fixed typo in function name.
Browse files Browse the repository at this point in the history
  • Loading branch information
imolorhe committed Nov 8, 2019
1 parent 86ae2c7 commit d8d28a9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,6 @@
"@angular/cdk": "^8.1.1",
"@angular/cli": "^8.1.2",
"@angular/common": "^8.1.2",
"@angular/compiler": "^8.1.2",
"@angular/compiler-cli": "^8.1.2",
"@angular/core": "^8.1.2",
"@angular/forms": "^8.1.2",
"@angular/http": "^7.2.15",
Expand Down Expand Up @@ -113,6 +111,8 @@
},
"devDependencies": {
"@angular-devkit/build-angular": "~0.801.2",
"@angular/compiler": "^8.1.2",
"@angular/compiler-cli": "^8.1.2",
"@types/chrome": "^0.0.90",
"@types/electron": "^1.6.10",
"@types/graphql": "^14.2.2",
Expand Down
8 changes: 4 additions & 4 deletions src/app/effects/query.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ export class QueryEffects {
return observableOf(response);
}),
switchMap(response => {
return this.getPrerequesstTransformedData$(response);
return this.getPrerequestTransformedData$(response);
}),
switchMap((returnedData) => {
if (!returnedData) {
Expand Down Expand Up @@ -295,7 +295,7 @@ export class QueryEffects {
return { data: state.windows[action.windowId], windowId: action.windowId, action };
}),
switchMap(response => {
return this.getPrerequesstTransformedData$(response);
return this.getPrerequestTransformedData$(response);
}),
switchMap((res) => {
if (!res) {
Expand Down Expand Up @@ -419,7 +419,7 @@ export class QueryEffects {
return { data: state.windows[action.windowId], windowId: action.windowId, action };
}),
switchMap(response => {
return this.getPrerequesstTransformedData$(response);
return this.getPrerequestTransformedData$(response);
}),
switchMap(res => {
if (!res) {
Expand Down Expand Up @@ -792,7 +792,7 @@ export class QueryEffects {
) {}


getPrerequesstTransformedData$(input: EffectResponseData) {
getPrerequestTransformedData$(input: EffectResponseData) {
return observableOf(input).pipe(
switchMap(response => {
if (!response) {
Expand Down

0 comments on commit d8d28a9

Please sign in to comment.