Re-work invite links

This commit is contained in:
Jon Staab
2025-09-05 17:20:12 -07:00
committed by hodlbod
parent 1c37c5bb3d
commit 7217d122b5
10 changed files with 168 additions and 133 deletions
+2 -4
View File
@@ -6,15 +6,13 @@
import Page from "@lib/components/Page.svelte"
import ContentSearch from "@lib/components/ContentSearch.svelte"
import PeopleItem from "@app/components/PeopleItem.svelte"
import {getDefaultPubkeys} from "@app/core/state"
const defaultPubkeys = getDefaultPubkeys()
import {defaultPubkeys} from "@app/core/state"
let term = $state("")
let limit = $state(10)
let element: Element | undefined = $state()
const pubkeys = $derived(term ? $profileSearch.searchValues(term) : defaultPubkeys)
const pubkeys = $derived(term ? $profileSearch.searchValues(term) : $defaultPubkeys)
onMount(() => {
const scroller = createScroller({