diff --git a/package.json b/package.json
index 3b0c1b9..77e3d77 100644
--- a/package.json
+++ b/package.json
@@ -10,10 +10,8 @@
},
"dependencies": {
"@loadable/component": "^5.15.3",
- "@react-icons/all-files": "^4.1.0",
"babel-plugin-codegen": "^4.1.5",
"babel-plugin-macros": "^3.1.0",
- "fuse.js": "^6.6.2",
"next": "13.1.6",
"react": "18.2.0",
"react-dom": "18.2.0",
@@ -28,8 +26,8 @@
"@types/node": "^18.11.18",
"@types/prettier": "^2.7.2",
"@types/react": "^18.0.26",
- "@types/react-no-ssr": "^1.1.3",
"@types/react-dom": "^18.0.10",
+ "@types/react-no-ssr": "^1.1.3",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"autoprefixer": "^10.4.7",
diff --git a/src/pages/index.tsx b/src/pages/index.tsx
index 836b1da..60422cf 100644
--- a/src/pages/index.tsx
+++ b/src/pages/index.tsx
@@ -1,18 +1,14 @@
import {type NextPage} from "next";
import Head from "next/head";
-import Card from "../components/Card";
// @ts-ignore
import iconList from "@utils/iconList";
import {useEffect, useMemo, useState} from "react";
import {useDebounce} from "usehooks-ts";
-// import Fuse from "fuse.js";
import {AiOutlineLoading3Quarters} from "react-icons/ai";
import IconCatalog from "@components/render/IconCatalog";
import NoSSR from 'react-no-ssr';
const icons = iconList as { id: string, setId: string }[];
-// const fuse = new Fuse(icons, {keys: ["id", "setId"], threshold: 0.2})
-const maximumResults = 10000;
const Home: NextPage = () => {
const [query, setQuery] = useState("");
@@ -60,9 +56,7 @@ const Home: NextPage = () => {
{showLoading ?