Skip to content

Commit

Permalink
pr feedback
Browse files Browse the repository at this point in the history
  • Loading branch information
martabal authored and danieldietzler committed Apr 22, 2024
1 parent 150f2d6 commit e16bfcd
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions web/src/routes/(user)/people/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -471,11 +471,8 @@
<div class="flex min-h-[calc(66vh_-_11rem)] w-full place-content-center items-center dark:text-white">
<div class="flex flex-col content-center items-center text-center">
<Icon path={mdiAccountOff} size="3.5em" />
<p class="mt-5 text-3xl font-medium">
No people
{#if searchName}
with name "{searchName}"
{/if}
<p class="mt-5 text-3xl font-medium max-w-lg line-clamp-2 overflow-hidden">
{`No people${searchName ? ` named "${searchName}"` : ''}`}
</p>
</div>
</div>
Expand Down

0 comments on commit e16bfcd

Please sign in to comment.