My Trips

{#if activeTab === "Ongoing Trips"} {#if ongoingTrips.length === 0}

There is no ongoing trip

{:else}
{#each ongoingTrips as trip} {/each}
{/if} {:else} {#if pastTrips.length === 0}

There is no past trip

{:else}
{#each pastTrips as trip} {/each}
{/if} {/if}