mirror of
https://github.com/ThaUnknown/miru.git
synced 2026-04-21 03:32:11 +00:00
fix: remove global app chat
This commit is contained in:
parent
3a15a1fcf3
commit
bf2e645daa
2 changed files with 6 additions and 6 deletions
|
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "ui",
|
"name": "ui",
|
||||||
"version": "6.4.131",
|
"version": "6.4.132",
|
||||||
"license": "BUSL-1.1",
|
"license": "BUSL-1.1",
|
||||||
"private": true,
|
"private": true,
|
||||||
"packageManager": "pnpm@9.15.5",
|
"packageManager": "pnpm@9.15.5",
|
||||||
|
|
|
||||||
|
|
@ -10,7 +10,7 @@
|
||||||
import { goto } from '$app/navigation'
|
import { goto } from '$app/navigation'
|
||||||
import { page } from '$app/stores'
|
import { page } from '$app/stores'
|
||||||
import Logo from '$lib/components/icons/Logo.svelte'
|
import Logo from '$lib/components/icons/Logo.svelte'
|
||||||
import { Home, Search, Calendar, Users, Download, Bolt, LogIn, Messages } from '$lib/components/icons/animated'
|
import { Home, Search, Calendar, Users, Download, Bolt, LogIn } from '$lib/components/icons/animated'
|
||||||
import * as Avatar from '$lib/components/ui/avatar'
|
import * as Avatar from '$lib/components/ui/avatar'
|
||||||
import client from '$lib/modules/auth/client'
|
import client from '$lib/modules/auth/client'
|
||||||
import { lockedState, idleState, activityState } from '$lib/modules/idle'
|
import { lockedState, idleState, activityState } from '$lib/modules/idle'
|
||||||
|
|
@ -52,9 +52,9 @@
|
||||||
<SidebarButton href='/app/w2g/' class='animated-icon'>
|
<SidebarButton href='/app/w2g/' class='animated-icon'>
|
||||||
<Users size={18} />
|
<Users size={18} />
|
||||||
</SidebarButton>
|
</SidebarButton>
|
||||||
<SidebarButton href='/app/chat/' class='animated-icon'>
|
<!-- <SidebarButton href='/app/chat/' class='animated-icon'>
|
||||||
<Messages size={18} />
|
<Messages size={18} />
|
||||||
</SidebarButton>
|
</SidebarButton> -->
|
||||||
<SidebarButton href='/app/client/' id='sidebar-client' data-down='#sidebar-donate' class='animated-icon'>
|
<SidebarButton href='/app/client/' id='sidebar-client' data-down='#sidebar-donate' class='animated-icon'>
|
||||||
<Download size={18} />
|
<Download size={18} />
|
||||||
</SidebarButton>
|
</SidebarButton>
|
||||||
|
|
@ -64,8 +64,8 @@
|
||||||
<SidebarButton href='/app/settings/' class='animated-icon'>
|
<SidebarButton href='/app/settings/' class='animated-icon'>
|
||||||
<Bolt size={18} />
|
<Bolt size={18} />
|
||||||
</SidebarButton>
|
</SidebarButton>
|
||||||
<!-- <SidebarButton href='/app/profile/'> -->
|
<SidebarButton href='/app/profile/'>
|
||||||
<SidebarButton href='/app/profile/' class='hidden md:flex py-0 animated-icon'>
|
<!-- <SidebarButton href='/app/profile/' class='hidden md:flex py-0 animated-icon'> -->
|
||||||
{#if hasAuth}
|
{#if hasAuth}
|
||||||
{@const viewer = client.profile()}
|
{@const viewer = client.profile()}
|
||||||
<Avatar.Root class='size-6 rounded-md'>
|
<Avatar.Root class='size-6 rounded-md'>
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue