Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions apps/web/components/email-list/EmailList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -145,13 +145,13 @@ export function List({
/>
) : (
<div className="mt-20">
<Celebration
message={
type === "inbox"
? "You made it to Inbox Zero!"
: "All emails handled!"
}
/>
{type === "inbox" ? (
<Celebration message={"You made it to Inbox Zero!"} />
) : (
<div className="flex items-center justify-center font-cal text-2xl text-primary">
No emails to display
</div>
)}
</div>
)}
</>
Expand Down