Skip to content

Commit

Permalink
chore: import using alias
Browse files Browse the repository at this point in the history
  • Loading branch information
GravityTwoG committed Apr 4, 2024
1 parent 12806b2 commit 81a8abe
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/client/ui/hooks/useConfirmModal/useConfirmModal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ import { useState } from "react";

import classes from "./confirm-modal.module.scss";

import { Modal } from "../../molecules/Modal";
import { Button } from "../../atoms/Button";
import { Button } from "@/client/ui/atoms/Button";
import { Modal } from "@/client/ui/molecules/Modal";

Check failure on line 6 in src/client/ui/hooks/useConfirmModal/useConfirmModal.tsx

View workflow job for this annotation

GitHub Actions / Release

Already included file name 'D:/a/cloud-saves/cloud-saves/src/client/ui/molecules/Modal/index.ts' differs from file name 'D:/a/cloud-saves/cloud-saves/src/client/ui/molecules/Modal/Index.ts' only in casing.

Check failure on line 6 in src/client/ui/hooks/useConfirmModal/useConfirmModal.tsx

View workflow job for this annotation

GitHub Actions / Release

Already included file name 'D:/a/cloud-saves/cloud-saves/src/client/ui/molecules/Modal/index.ts' differs from file name 'D:/a/cloud-saves/cloud-saves/src/client/ui/molecules/Modal/Index.ts' only in casing.

export type UseConfirmModalArgs = {
onConfirm?: () => void;
Expand Down

0 comments on commit 81a8abe

Please sign in to comment.