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