Skip to content

Commit

Permalink
fix: remove fade on conv load
Browse files Browse the repository at this point in the history
  • Loading branch information
nsarrazin committed Nov 6, 2024
1 parent a58f066 commit c7dacb9
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/lib/components/NavMenu.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
import type { Model } from "$lib/types/Model";
import { page } from "$app/stores";
import { fade } from "svelte/transition";
export let conversations: Promise<ConvSidebar[]>;
export let canLogin: boolean;
export let user: LayoutData["user"];
Expand Down Expand Up @@ -78,7 +77,7 @@
</div>
{/if}
{:then groupedConversations}
<div transition:fade class="flex flex-col gap-1">
<div class="flex flex-col gap-1">
{#each Object.entries(groupedConversations) as [group, convs]}
{#if convs.length}
<h4 class="mb-1.5 mt-4 pl-0.5 text-sm text-gray-400 first:mt-0 dark:text-gray-500">
Expand Down

0 comments on commit c7dacb9

Please sign in to comment.