diff --git a/components/CategoryList.js b/components/CategoryList.js
index 1f7ed378..cc876f82 100644
--- a/components/CategoryList.js
+++ b/components/CategoryList.js
@@ -1,7 +1,7 @@
import Link from 'next/link'
import React from 'react'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
-import { faFolder, faFolderOpen, faThList } from '@fortawesome/free-solid-svg-icons'
+import { faFolder, faFolderOpen } from '@fortawesome/free-solid-svg-icons'
import { useGlobal } from '@/lib/global'
const CategoryList = ({ currentCategory, categories }) => {
@@ -11,7 +11,7 @@ const CategoryList = ({ currentCategory, categories }) => {
const { locale } = useGlobal()
return
- - {locale.COMMON.CATEGORY}
+ - {locale.COMMON.CATEGORY}
{Object.keys(categories).map(category => {
const selected = category === currentCategory
return (
diff --git a/components/StickyBar.js b/components/StickyBar.js
index abbc25c9..20acd2a1 100644
--- a/components/StickyBar.js
+++ b/components/StickyBar.js
@@ -36,7 +36,7 @@ const StickyBar = ({ children }) => {
return (
-
+
{ children }
diff --git a/components/TagList.js b/components/TagList.js
index f1eabe52..c892f0f7 100644
--- a/components/TagList.js
+++ b/components/TagList.js
@@ -1,8 +1,5 @@
import React from 'react'
import TagItem from '@/components/TagItem'
-import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
-import { faTags } from '@fortawesome/free-solid-svg-icons'
-
/**
* 横向的标签列表
* @param tags
@@ -15,7 +12,7 @@ const TagList = ({ tags, currentTag }) => {
return <>>
}
return
- - 标签:
+ - 标签:
{tags.map(tag => {
const selected = tag.name === currentTag
return