Skip to content

Commit c227f3d

Browse files
fix(inbox): remove a typo in list (#234)
Co-authored-by: Benjamin Canac <[email protected]>
1 parent f31f95b commit c227f3d

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

app/components/inbox/InboxList.vue

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,10 @@ defineShortcuts({
5252
<div
5353
class="p-4 sm:px-6 text-sm cursor-pointer border-l-2 transition-colors"
5454
:class="[
55-
mail.unread ? 'text-highlighted' : 'text-toned)',
56-
selectedMail && selectedMail.id === mail.id ? 'border-primary bg-primary/10' : 'border-(--ui-bg) hover:border-primary hover:bg-primary/5'
55+
mail.unread ? 'text-highlighted' : 'text-toned',
56+
selectedMail && selectedMail.id === mail.id
57+
? 'border-primary bg-primary/10'
58+
: 'border-(--ui-bg) hover:border-primary hover:bg-primary/5'
5759
]"
5860
@click="selectedMail = mail"
5961
>

0 commit comments

Comments
 (0)