Skip to content

Commit

Permalink
fix: delete unnecessary imports
Browse files Browse the repository at this point in the history
  • Loading branch information
ShlomiShitrit committed Oct 6, 2024
1 parent 2ebfd68 commit 0a42da1
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/app/__tests__/useInput.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,8 @@ import "@testing-library/jest-dom";
import { renderHook, act } from "@testing-library/react";
import useInput from "@/app/hooks/useInput";
import { Bot, Message } from "@/app/general/interfaces";
import { sender, DataType } from "@/app/general/types";
import {
botMessages,
botRestartMessages,
botAddMessages,
} from "@/app/general/resources";
import { sender } from "@/app/general/types";
import { botMessages, botAddMessages } from "@/app/general/resources";

// Mock data for testing
const botMock: Bot = {
Expand Down

0 comments on commit 0a42da1

Please sign in to comment.