Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adrienZ committed Oct 4, 2024
1 parent ce2788f commit 23cb9dd
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/runtime/h3/routes/ask-email-verification.post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SlipAuthError } from "../core/errors/SlipAuthError";
import { useSlipAuth } from "../server/utils/useSlipAuth";
import { SlipAuthError } from "../../core/errors/SlipAuthError";
import { useSlipAuth } from "../../server/utils/useSlipAuth";
import { defineEventHandler, createError } from "h3";

export default defineEventHandler(async (event) => {
Expand Down
2 changes: 1 addition & 1 deletion src/runtime/h3/routes/ask-password-reset.post.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useSlipAuth } from "../server/utils/useSlipAuth";
import { useSlipAuth } from "../../server/utils/useSlipAuth";
import { defineEventHandler, createError } from "h3";

export default defineEventHandler(async (event) => {
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/h3/routes/login.post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SlipAuthError } from "../core/errors/SlipAuthError";
import { useSlipAuth } from "../server/utils/useSlipAuth";
import { SlipAuthError } from "../../core/errors/SlipAuthError";
import { useSlipAuth } from "../../server/utils/useSlipAuth";
import { defineEventHandler, readBody, getHeader } from "h3";

export default defineEventHandler(async (event) => {
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/h3/routes/register.post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SlipAuthError } from "../core/errors/SlipAuthError";
import { useSlipAuth } from "../server/utils/useSlipAuth";
import { SlipAuthError } from "../../core/errors/SlipAuthError";
import { useSlipAuth } from "../../server/utils/useSlipAuth";
import { defineEventHandler, readBody, getHeader } from "h3";

export default defineEventHandler(async (event) => {
Expand Down
4 changes: 2 additions & 2 deletions src/runtime/h3/routes/verify-email-verification.post.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { SlipAuthError } from "../core/errors/SlipAuthError";
import { useSlipAuth } from "../server/utils/useSlipAuth";
import { SlipAuthError } from "../../core/errors/SlipAuthError";
import { useSlipAuth } from "../../server/utils/useSlipAuth";
import { defineEventHandler, readBody, createError } from "h3";

export default defineEventHandler(async (event) => {
Expand Down

0 comments on commit 23cb9dd

Please sign in to comment.