File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
apps/mobile/src/features/activity Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change 1- import { Balance , isQuoteCryptoCurrency } from '@/components/balance/balance' ;
1+ import { Balance } from '@/components/balance/balance' ;
22import { useBrowser } from '@/core/browser-provider' ;
33import { useSettings } from '@/store/settings/settings' ;
44import { minusSign } from '@/utils/special-char' ;
@@ -48,14 +48,18 @@ export function ActivityListItem({ activity }: ActivityListItemProps) {
4848 < Flag img = { < ActivityAvatarIcon type = { type } asset = { asset } status = { status } /> } px = "5" py = "3" >
4949 < ItemLayout
5050 gap = "0"
51- titleLeft = { < Text variant = "label01" > { getActivityTitle ( activity ) } </ Text > }
51+ titleLeft = {
52+ < Text variant = "label01" fontSize = { 15 } >
53+ { getActivityTitle ( activity ) }
54+ </ Text >
55+ }
5256 titleRight = {
5357 value ?. quote ? (
5458 < Balance
5559 operator = { getBalanceOperator ( activity ) }
5660 balance = { value . quote }
5761 color = { getBalanceColor ( activity ) }
58- fontSize = { isQuoteCryptoCurrency ( value . quote ) ? 13 : undefined }
62+ fontSize = { 15 }
5963 isQuoteCurrency
6064 />
6165 ) : undefined
You can’t perform that action at this time.
0 commit comments