From 508c70791c11065a4716b8b1d6009220e11568bc Mon Sep 17 00:00:00 2001 From: mgtennant <100305096+mgtennant@users.noreply.github.com> Date: Wed, 6 Dec 2023 09:13:17 -0800 Subject: [PATCH] add 2 comment lines --- backend/src/app.controller.ts | 1 + frontend/src/app.controller.ts | 1 + 2 files changed, 2 insertions(+) diff --git a/backend/src/app.controller.ts b/backend/src/app.controller.ts index a121c70c..469130a4 100644 --- a/backend/src/app.controller.ts +++ b/backend/src/app.controller.ts @@ -10,6 +10,7 @@ export class AppController { return this.appService.getHello(); } + // @Get() getHello2(): string { return this.appService.getHello(); diff --git a/frontend/src/app.controller.ts b/frontend/src/app.controller.ts index ac80068b..4cf34cf2 100644 --- a/frontend/src/app.controller.ts +++ b/frontend/src/app.controller.ts @@ -29,6 +29,7 @@ import { Request, Response } from "express"; import { ReportService } from "./report/report.service"; import { nfrInterestedParties } from "utils/util"; +// let requestUrl: string; let requestConfig: AxiosRequestConfig;