diff --git a/.vscode/settings.json b/.vscode/settings.json index 41cf9bacde..91c8cc1889 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -11,5 +11,6 @@ "python.testing.unittestEnabled": false, "python.testing.pytestEnabled": true, "python.testing.autoTestDiscoverOnSaveEnabled": true, - "eslint.workingDirectories": ["bciers"] + "eslint.workingDirectories": ["bciers"], + "typescript.tsdk": "./bciers/node_modules/typescript/lib" } diff --git a/bciers/apps/registration/app/components/form/MultiStepAccordion.tsx b/bciers/apps/registration/app/components/form/MultiStepAccordion.tsx index c749e2a3a7..5c3adc4f5e 100644 --- a/bciers/apps/registration/app/components/form/MultiStepAccordion.tsx +++ b/bciers/apps/registration/app/components/form/MultiStepAccordion.tsx @@ -1,7 +1,7 @@ "use client"; import { useState } from "react"; -import Accordion from "@app/components/accordion/Accordion"; +import Accordion from "@/app/components/accordion/Accordion"; import FormBase from "./FormBase"; import { RJSFSchema, UiSchema } from "@rjsf/utils"; diff --git a/bciers/apps/registration/app/components/operations/OperationReview.tsx b/bciers/apps/registration/app/components/operations/OperationReview.tsx index df31c89091..a7ce483a53 100644 --- a/bciers/apps/registration/app/components/operations/OperationReview.tsx +++ b/bciers/apps/registration/app/components/operations/OperationReview.tsx @@ -2,7 +2,7 @@ import { actionHandler } from "@/app/utils/actions"; import { useSession } from "next-auth/react"; -import Review from "@app/components/button/Review"; +import Review from "@/app/components/button/Review"; import { Status } from "@/app/utils/enums"; interface Props { diff --git a/bciers/apps/registration/app/components/userOperators/UserOperatorReview.tsx b/bciers/apps/registration/app/components/userOperators/UserOperatorReview.tsx index 62a63d7bab..00eafe49df 100644 --- a/bciers/apps/registration/app/components/userOperators/UserOperatorReview.tsx +++ b/bciers/apps/registration/app/components/userOperators/UserOperatorReview.tsx @@ -1,7 +1,7 @@ "use client"; import { actionHandler } from "@/app/utils/actions"; -import Review from "@app/components/button/Review"; +import Review from "@/app/components/button/Review"; import { OperatorStatus, Status, diff --git a/bciers/apps/reporting/src/app/api/auth/[...nextauth]/authOptions.ts b/bciers/apps/reporting/src/app/api/auth/[...nextauth]/authOptions.ts index 0b315bd269..a772e9c383 100644 --- a/bciers/apps/reporting/src/app/api/auth/[...nextauth]/authOptions.ts +++ b/bciers/apps/reporting/src/app/api/auth/[...nextauth]/authOptions.ts @@ -1,4 +1,4 @@ import { NextAuthOptions } from "next-auth"; -import { authOptions as regAuthOptions } from "registration/api/auth/[...nextauth]/route"; +import { authOptions as regAuthOptions } from "@/app/api/auth/[...nextauth]/route"; export const authOptions = regAuthOptions as NextAuthOptions; diff --git a/bciers/apps/reporting/src/app/api/auth/token/route.ts b/bciers/apps/reporting/src/app/api/auth/token/route.ts index ff7b343861..1136f6824b 100644 --- a/bciers/apps/reporting/src/app/api/auth/token/route.ts +++ b/bciers/apps/reporting/src/app/api/auth/token/route.ts @@ -1,3 +1,3 @@ -import { GET as regGET } from "registration/api/auth/token/route"; +import { GET as regGET } from "@/app/api/auth/token/route"; export const GET = regGET;