Skip to content

Commit

Permalink
Fix imports of files
Browse files Browse the repository at this point in the history
  • Loading branch information
marshallku committed Feb 12, 2024
1 parent 21e8ef0 commit c159484
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 2 additions & 0 deletions apps/blog/src/api/comment/api.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
"use client";

import { request } from "#api/instance.client";
import { Comment, CommentListResponse } from "./types";

Expand Down
1 change: 0 additions & 1 deletion apps/blog/src/api/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
export * from "./comment/api";
export * from "./comment/types";
2 changes: 1 addition & 1 deletion apps/blog/src/components/CommentForm/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
import { FormEventHandler, useCallback, useRef, useState } from "react";
import { Icon } from "@marshallku/icon";
import { classNames } from "@marshallku/utils";
import { usePostComment } from "#api/comment/queries";
import Typography from "#components/Typography";
import CommentAvatar from "#components/CommentAvatar";
import styles from "./index.module.scss";
import { usePostComment } from "#api/comment/queries";

interface CommentFormProps {
slug: string;
Expand Down

0 comments on commit c159484

Please sign in to comment.