feature/23-voice-room/poc #93

Merged
hodlbod merged 68 commits from feature/23-voice-room/poc into dev 2026-03-16 20:38:06 +00:00
Showing only changes of commit 9364b46e5d - Show all commits
+2 -2
View File
@@ -14,11 +14,11 @@
const {pubkey, url, size = 7, ...props}: Props = $props()
const profile = pubkey ? deriveProfile(pubkey, removeUndefined([url])) : undefined
const profile = deriveProfile(pubkey, removeUndefined([url]))
</script>
<ImageIcon
{size}
Outdated
Review

deriveProfile is designed to accept undefined to avoid this kind of mess

`deriveProfile` is designed to accept `undefined` to avoid this kind of mess
alt=""
class={cx(props.class, "rounded-full")}
src={(profile ? $profile?.picture : undefined) || UserRounded} />
src={$profile?.picture || UserRounded} />