Migrate more stuff

This commit is contained in:
Jon Staab
2025-02-03 16:37:14 -08:00
parent 0f705c459a
commit 8d3433b167
150 changed files with 2001 additions and 1205 deletions
+3 -3
View File
@@ -1,13 +1,13 @@
<script lang="ts">
import ProfileCircle from "@app/components/ProfileCircle.svelte"
export let pubkeys
let {...props} = $props()
</script>
<div class="flex pr-3">
{#each pubkeys.slice(0, 15) as pubkey (pubkey)}
{#each props.pubkeys.slice(0, 15) as pubkey (pubkey)}
<div class="z-feature -mr-3 inline-block">
<ProfileCircle class="h-8 w-8 bg-base-300" {pubkey} {...$$props} />
<ProfileCircle class="h-8 w-8 bg-base-300" {pubkey} {...props} />
</div>
{/each}
</div>