Skip to content

Commit

Permalink
Merge pull request #13 from azeddine-hmd/dev
Browse files Browse the repository at this point in the history
fix HttpError import
  • Loading branch information
azeddine-hmd authored Dec 15, 2023
2 parents 8690cbf + 6ad5d6d commit 8518e14
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
2 changes: 0 additions & 2 deletions frontend/app/(auth)/verify-email/[code]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,6 @@ import { useEffect } from "react";
import { BsXLg } from "react-icons/bs";
import { useMutation } from "@tanstack/react-query";
import { api } from "@/config/axios";
import { AxiosError } from "axios";
import { HttpError } from "@/network";

type CodeAuthVerificationProps = {
params: {
Expand Down
2 changes: 1 addition & 1 deletion frontend/hooks/use-upload-avatar-mut.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { api } from "@/config";
import { HttpError } from "@/network";
import { HttpError } from "@/types/http-error";
import { useMutation } from "@tanstack/react-query";
import { AxiosError } from "axios";

Expand Down

0 comments on commit 8518e14

Please sign in to comment.