Files
flotilla/src/app/components/ProfileName.svelte
T
2025-04-16 10:36:21 -07:00

16 lines
315 B
Svelte

<script lang="ts">
import {removeNil} from "@welshman/lib"
import {deriveProfileDisplay} from "@welshman/app"
type Props = {
pubkey: string
url?: string
}
const {pubkey, url}: Props = $props()
const profileDisplay = deriveProfileDisplay(pubkey, removeNil([url]))
</script>
{$profileDisplay}