Skip to content

Commit

Permalink
fix: alias import error
Browse files Browse the repository at this point in the history
  • Loading branch information
LordHarsh committed Sep 21, 2024
1 parent e816dfd commit 7b1bed6
Show file tree
Hide file tree
Showing 7 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion server/src/api/corporate/corporate.schema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { toTitleCase } from "@/shared/utils/titleCase";
import { toTitleCase } from "../../shared/utils/titleCase";
import { z } from "zod";

export const CorporateSchema = z.object({
Expand Down
4 changes: 2 additions & 2 deletions server/src/api/corporate/corporate.services.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { sendConfirmation } from "@/shared/utils/confirm";
import { sendConfirmation } from "../../shared/utils/confirm";
import { getCorporateCollection } from "../../loaders/collections";
import ERRORS from "../../shared/errors";
import { updateSheet } from "@/shared/utils/sheets";
import { updateSheet } from "../../shared/utils/sheets";

export const registerCorporate = async (
firstName: string,
Expand Down
2 changes: 1 addition & 1 deletion server/src/api/creative/creative.schema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { toTitleCase } from "@/shared/utils/titleCase";
import { toTitleCase } from "../../shared/utils/titleCase";
import { z } from "zod";

export const CreativeSchema = z.object({
Expand Down
4 changes: 2 additions & 2 deletions server/src/api/creative/creative.services.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { sendConfirmation } from "@/shared/utils/confirm";
import { sendConfirmation } from "../../shared/utils/confirm";
import { getCreativeCollection } from "../../loaders/collections";
import ERRORS from "../../shared/errors";
import { updateSheet } from "@/shared/utils/sheets";
import { updateSheet } from "../../shared/utils/sheets";

export const registerCreative = async (
firstName: string,
Expand Down
2 changes: 1 addition & 1 deletion server/src/api/research/research.schema.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { toTitleCase } from "@/shared/utils/titleCase";
import { toTitleCase } from "../../shared/utils/titleCase";
import { z } from "zod";

export const ResearchSchema = z.object({
Expand Down
4 changes: 2 additions & 2 deletions server/src/api/research/research.services.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { sendConfirmation } from "@/shared/utils/confirm";
import { sendConfirmation } from "../../shared/utils/confirm";
import { getResearchCollection } from "../../loaders/collections";
import ERRORS from "../../shared/errors";
import { updateSheet } from "@/shared/utils/sheets";
import { updateSheet } from "../../shared/utils/sheets";

export const registerResearch = async (
firstName: string,
Expand Down
4 changes: 2 additions & 2 deletions server/src/api/technical/technical.services.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { sendConfirmation } from "@/shared/utils/confirm";
import { sendConfirmation } from "../../shared/utils/confirm";
import { getTechnicalCollection } from "../../loaders/collections";
import ERRORS from "../../shared/errors";
import { updateSheet } from "@/shared/utils/sheets";
import { updateSheet } from "../../shared/utils/sheets";

export const registerTechnical = async (
firstName: string,
Expand Down

0 comments on commit 7b1bed6

Please sign in to comment.