chore(format): Format files after update
This commit is contained in:
parent
2bfd5536c4
commit
8df7158415
|
@ -49,8 +49,8 @@ const DeviceCPULoad = ({ load }: DeviceCPULoadProps) => {
|
|||
backgroundColor: isHovered
|
||||
? '#f8f6ff'
|
||||
: message === 'Poor'
|
||||
? '#fefafa'
|
||||
: '#fff',
|
||||
? '#fefafa'
|
||||
: '#fff',
|
||||
}}
|
||||
onMouseEnter={() => setIsHovered(true)}
|
||||
onMouseLeave={() => setIsHovered(false)}
|
||||
|
|
|
@ -56,8 +56,8 @@ const DeviceMemoryHealth = ({
|
|||
backgroundColor: isHovered
|
||||
? '#f8f6ff'
|
||||
: message === 'Poor'
|
||||
? '#fefafa'
|
||||
: '#fff',
|
||||
? '#fefafa'
|
||||
: '#fff',
|
||||
}}
|
||||
onMouseEnter={() => setIsHovered(true)}
|
||||
onMouseLeave={() => setIsHovered(false)}
|
||||
|
|
|
@ -63,8 +63,8 @@ const DeviceNetworkHealth = ({ latency }: DeviceNetworkHealthProps) => {
|
|||
backgroundColor: isHovered
|
||||
? '#f8f6ff'
|
||||
: processedLatency.message === 'Poor'
|
||||
? '#fefafa'
|
||||
: '#fff',
|
||||
? '#fefafa'
|
||||
: '#fff',
|
||||
}}
|
||||
onMouseEnter={() => setIsHovered(true)}
|
||||
onMouseLeave={() => setIsHovered(false)}
|
||||
|
|
|
@ -50,8 +50,8 @@ const DeviceStorageHealth = ({
|
|||
backgroundColor: isHovered
|
||||
? '#f8f6ff'
|
||||
: message === 'Poor'
|
||||
? '#fefafa'
|
||||
: '#fff',
|
||||
? '#fefafa'
|
||||
: '#fff',
|
||||
}}
|
||||
onMouseEnter={() => setIsHovered(true)}
|
||||
onMouseLeave={() => setIsHovered(false)}
|
||||
|
|
|
@ -47,8 +47,8 @@ const ConnectWallet = ({ isConnectBtnJustifyEnd }: ConnectWalletProps) => {
|
|||
{connecting
|
||||
? 'Connecting'
|
||||
: wallet
|
||||
? 'Disconnect Wallet'
|
||||
: 'Connect Wallet'}
|
||||
? 'Disconnect Wallet'
|
||||
: 'Connect Wallet'}
|
||||
</Button>
|
||||
</XStack>
|
||||
)
|
||||
|
|
|
@ -58,8 +58,8 @@ const BackButton = () => {
|
|||
buttonState === 'enabled'
|
||||
? '09101C'
|
||||
: buttonState === 'disabled'
|
||||
? 'CED4DB'
|
||||
: 'fff',
|
||||
? 'CED4DB'
|
||||
: 'fff',
|
||||
fill: buttonState === 'pressed' ? '2A4AF5' : '',
|
||||
textColor: buttonState === 'disabled' ? 'CED4DB' : '09101C',
|
||||
}
|
||||
|
|
|
@ -26,8 +26,8 @@ const ExecClientCard = ({ name, icon, isComingSoon }: ExecClientCardProps) => {
|
|||
border: isComingSoon
|
||||
? '1px solid #F5F6F8'
|
||||
: isSelected
|
||||
? '1px solid #2A4AF5'
|
||||
: '1px solid #DCE0E5',
|
||||
? '1px solid #2A4AF5'
|
||||
: '1px solid #DCE0E5',
|
||||
borderRadius: '16px',
|
||||
padding: '12px 16px',
|
||||
cursor: 'pointer',
|
||||
|
|
Loading…
Reference in New Issue