+ {:else}
+ {text}
+ {/if}
+
+
+
diff --git a/src/views/rockets/Rockets.svelte b/src/views/rockets/Rockets.svelte
index 453bbd5..81dfa7e 100644
--- a/src/views/rockets/Rockets.svelte
+++ b/src/views/rockets/Rockets.svelte
@@ -4,7 +4,8 @@
import type { NDKEvent } from '@nostr-dev-kit/ndk';
import { onDestroy } from 'svelte';
import { ndk } from '@/ndk';
- //flow: fetch all 31108's. For now, just validate that the author is the same as the ignition author. If naming conflicts, look for namerocket listing.
+ import Todo from '../../components/Todo.svelte';
+ import RocketCard from '../../components/RocketCard.svelte';
let entries: NDKEventStore | undefined;
onDestroy(() => {
@@ -12,54 +13,15 @@
});
entries = $ndk.storeSubscribe([{ kinds: [31108 as number] }], { subId: 'rockets' });
-
-
+ //todo: until we have namerocket working, just manually dedupe rockets based on my pubkey
+ //todo: write a recognizer/validator for rocket events
-{#if entries && $entries}
-{#each $entries as e}