Skip to content
Snippets Groups Projects
Commit 360b7fc5 authored by Homada.Boumedane's avatar Homada.Boumedane
Browse files

chore(dlcm-portal): lint

lint
parent 5959273e
No related branches found
No related tags found
No related merge requests found
......@@ -143,9 +143,8 @@ export class AppTocState {
observe: "response",
responseType: "text",
}).pipe(
map((response: HttpResponse<string>) => {
return response.body;
}),
map((response: HttpResponse<string>) =>
response.body),
tap((toolsGuide: string) => {
ctx.dispatch(new AppTocAction.GetToolsGuideSuccess(action, toolsGuide));
}),
......@@ -189,9 +188,8 @@ export class AppTocState {
observe: "response",
responseType: "text",
}).pipe(
map((response: HttpResponse<string>) => {
return response.body;
}),
map((response: HttpResponse<string>) =>
response.body),
tap((integrationGuide: string) => {
ctx.dispatch(new AppTocAction.GetIntegrationGuideSuccess(action, integrationGuide));
}),
......@@ -235,9 +233,8 @@ export class AppTocState {
observe: "response",
responseType: "text",
}).pipe(
map((response: HttpResponse<string>) => {
return response.body;
}),
map((response: HttpResponse<string>) =>
response.body),
tap((apis: string) => {
ctx.dispatch(new AppTocAction.GetApisSuccess(action, apis));
}),
......@@ -281,9 +278,8 @@ export class AppTocState {
observe: "response",
responseType: "text",
}).pipe(
map((response: HttpResponse<string>) => {
return response.body;
}),
map((response: HttpResponse<string>) =>
response.body),
tap((userDocumentation: string) => {
ctx.dispatch(new AppTocAction.GetUserDocumentationSuccess(action, userDocumentation));
}),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment