{#if isOpen}
Move to Project
{#if isLoading}
{:else}
handleSelect(null)} class="flex w-full items-center gap-3 rounded-lg px-4 py-3 text-left transition-colors hover:bg-theme-secondary {currentProjectId === null ? 'bg-theme-secondary' : ''}" >
No Project
{#if currentProjectId === null}
{/if}
{#if projectsState.sortedProjects.length > 0}
{#each projectsState.sortedProjects as project (project.id)}
handleSelect(project.id)} class="flex w-full items-center gap-3 rounded-lg px-4 py-3 text-left transition-colors hover:bg-theme-secondary {currentProjectId === project.id ? 'bg-theme-secondary' : ''}" >
{project.name}
{#if currentProjectId === project.id}
{/if}
{/each} {/if} {#if projectsState.sortedProjects.length === 0}
No projects yet. Create one from the sidebar.
{/if} {/if}
{/if}