diff --git a/src/components/Note/index.tsx b/src/components/Note/index.tsx
index 3e870ec..664a1a3 100644
--- a/src/components/Note/index.tsx
+++ b/src/components/Note/index.tsx
@@ -31,7 +31,6 @@ import Poll from './Poll'
import UnknownNote from './UnknownNote'
import VideoNote from './VideoNote'
import RelayReview from './RelayReview'
-import DiscussionNote from '@/components/DiscussionNote'
export default function Note({
event,
@@ -88,7 +87,7 @@ export default function Note({
} else if (event.kind === kinds.CommunityDefinition) {
content =
} else if (event.kind === ExtendedKind.DISCUSSION) {
- content =
+ content =
} else if (event.kind === ExtendedKind.POLL) {
content = (
<>
@@ -104,8 +103,6 @@ export default function Note({
content =
} else if (event.kind === ExtendedKind.RELAY_REVIEW) {
content =
- } else if (event.kind === ExtendedKind.DISCUSSION) {
- content =
} else if (event.kind === ExtendedKind.PUBLIC_MESSAGE) {
content =
} else {