Merge branch 'dev' into dev

This commit is contained in:
bhavishy2801
2026-04-02 18:19:28 +00:00
8 changed files with 133 additions and 135 deletions
+3 -1
View File
@@ -191,7 +191,9 @@ export const PLATFORM_TERMS = import.meta.env.VITE_PLATFORM_TERMS
export const PLATFORM_PRIVACY = import.meta.env.VITE_PLATFORM_PRIVACY
export const PLATFORM_LOGO = PLATFORM_URL + "/logo.png"
export const PLATFORM_LOGO = import.meta.env.PROD
? PLATFORM_URL + "/logo.png"
: import.meta.env.VITE_PLATFORM_LOGO || PLATFORM_URL + "/logo.png"
export const PLATFORM_NAME = import.meta.env.VITE_PLATFORM_NAME
+1 -7
View File
@@ -261,13 +261,7 @@
</div>
{/each}
{:else if !term}
<div class="flex flex-col items-center gap-4 py-12 text-center">
<p class="text-base-content/60">You haven't joined any spaces yet.</p>
<Button class="btn btn-primary" onclick={addSpace}>
<Icon icon={AddCircle} />
Browse Spaces
</Button>
</div>
<p class="py-12 text-center">You haven't joined any spaces yet.</p>
{/if}
<Divider>{filteredUserUrls.length > 0 ? "More Spaces" : "Browse Spaces"}</Divider>
{#each otherSpaces.slice(0, limit) as relay (relay.url)}