chore(format): Format files after update

This commit is contained in:
Emil Ivanichkov 2024-03-12 18:37:09 +02:00 committed by Emil Ivanichkov
parent 2bfd5536c4
commit 8df7158415
7 changed files with 14 additions and 14 deletions

View File

@ -49,8 +49,8 @@ const DeviceCPULoad = ({ load }: DeviceCPULoadProps) => {
backgroundColor: isHovered
? '#f8f6ff'
: message === 'Poor'
? '#fefafa'
: '#fff',
? '#fefafa'
: '#fff',
}}
onMouseEnter={() => setIsHovered(true)}
onMouseLeave={() => setIsHovered(false)}

View File

@ -56,8 +56,8 @@ const DeviceMemoryHealth = ({
backgroundColor: isHovered
? '#f8f6ff'
: message === 'Poor'
? '#fefafa'
: '#fff',
? '#fefafa'
: '#fff',
}}
onMouseEnter={() => setIsHovered(true)}
onMouseLeave={() => setIsHovered(false)}

View File

@ -63,8 +63,8 @@ const DeviceNetworkHealth = ({ latency }: DeviceNetworkHealthProps) => {
backgroundColor: isHovered
? '#f8f6ff'
: processedLatency.message === 'Poor'
? '#fefafa'
: '#fff',
? '#fefafa'
: '#fff',
}}
onMouseEnter={() => setIsHovered(true)}
onMouseLeave={() => setIsHovered(false)}

View File

@ -50,8 +50,8 @@ const DeviceStorageHealth = ({
backgroundColor: isHovered
? '#f8f6ff'
: message === 'Poor'
? '#fefafa'
: '#fff',
? '#fefafa'
: '#fff',
}}
onMouseEnter={() => setIsHovered(true)}
onMouseLeave={() => setIsHovered(false)}

View File

@ -47,8 +47,8 @@ const ConnectWallet = ({ isConnectBtnJustifyEnd }: ConnectWalletProps) => {
{connecting
? 'Connecting'
: wallet
? 'Disconnect Wallet'
: 'Connect Wallet'}
? 'Disconnect Wallet'
: 'Connect Wallet'}
</Button>
</XStack>
)

View File

@ -58,8 +58,8 @@ const BackButton = () => {
buttonState === 'enabled'
? '09101C'
: buttonState === 'disabled'
? 'CED4DB'
: 'fff',
? 'CED4DB'
: 'fff',
fill: buttonState === 'pressed' ? '2A4AF5' : '',
textColor: buttonState === 'disabled' ? 'CED4DB' : '09101C',
}

View File

@ -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',