Skip to content

Commit bbc9bdc

Browse files
committed
Revert (No payee) color
1 parent f6fd45f commit bbc9bdc

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

packages/desktop-client/src/components/mobile/transactions/TransactionListItem.tsx

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -185,9 +185,12 @@ export function TransactionListItem({
185185
style={{
186186
...textStyle,
187187
fontWeight: isAdded ? '600' : '400',
188-
...(!displayPayee && {
189-
fontStyle: 'italic',
190-
}),
188+
...(!displayPayee && !isPreview
189+
? {
190+
color: theme.pageTextLight,
191+
fontStyle: 'italic',
192+
}
193+
: {}),
191194
}}
192195
>
193196
{displayPayee || '(No payee)'}

0 commit comments

Comments
 (0)