diff --git a/plugin/src/components/BackgroundNotices/index.tsx b/plugin/src/components/BackgroundNotices/index.tsx
index 76a55a8d..2e224bcf 100644
--- a/plugin/src/components/BackgroundNotices/index.tsx
+++ b/plugin/src/components/BackgroundNotices/index.tsx
@@ -18,7 +18,6 @@ const BackgroundNotices: React.FC = () => {
className="list-group-item d-flex justify-content-left align-items-center bg-notices-text bg-primary"
key={index}
>
- {index + 1}
{notice}
)
diff --git a/plugin/src/features/Plugin/index.tsx b/plugin/src/features/Plugin/index.tsx
index b11c9832..eb29ef56 100644
--- a/plugin/src/features/Plugin/index.tsx
+++ b/plugin/src/features/Plugin/index.tsx
@@ -16,9 +16,9 @@ import { hashDirAtom, compilationAtom } from '@/atoms'
import { deploymentAtom } from '@/atoms/deployment'
import { initializeRemixClient, isLoadedAtom, remixClientAtom } from '@/stores/remixClient'
import storage from '@/utils/storage'
-import './styles.css'
import useAsync from '@/hooks/useAsync'
import { type AccordianTabs } from '@/types/common'
+import './styles.css'
export const Plugin = () => {
const { status: compileStatus, errorMessages: compileErrorMessages } = useAtomValue(compilationAtom)
@@ -147,10 +147,21 @@ export const Plugin = () => {
Notices