Skip to content

Commit

Permalink
chore: build errors 3
Browse files Browse the repository at this point in the history
  • Loading branch information
dleard committed May 3, 2024
1 parent 1f934d7 commit 67104fe
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 6 deletions.
3 changes: 2 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
Original file line number Diff line number Diff line change
@@ -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";

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
Original file line number Diff line number Diff line change
@@ -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,
Expand Down
Original file line number Diff line number Diff line change
@@ -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;
2 changes: 1 addition & 1 deletion bciers/apps/reporting/src/app/api/auth/token/route.ts
Original file line number Diff line number Diff line change
@@ -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;

0 comments on commit 67104fe

Please sign in to comment.