From 5de33dace8426d823ea6e8bff5aaf3feeea0c88b Mon Sep 17 00:00:00 2001 From: Le Minh Tri Date: Sun, 26 Feb 2023 01:16:23 +0700 Subject: [PATCH] fix: remove redundant import --- src/pages/tags/[slug].astro | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pages/tags/[slug].astro b/src/pages/tags/[slug].astro index f68f0826..3a0c0fba 100644 --- a/src/pages/tags/[slug].astro +++ b/src/pages/tags/[slug].astro @@ -2,7 +2,6 @@ import { getCollection } from 'astro:content' import kebabCase from 'lodash.kebabcase' -import LeetCodeDifficulty from '@/components/LeetCodeDifficulty.astro' import PostList from '@/components/post/PostList.astro' import siteConfig from '@/configs/site' import AppLayout from '@/layouts/AppLayout.astro'