disable single attribute per line

This commit is contained in:
jeffvli 2025-07-12 11:17:54 -07:00
parent 92ed8e20c9
commit 8b141d652c
154 changed files with 390 additions and 1800 deletions

View file

@ -144,10 +144,7 @@ export const AppMenu = () => {
key={`server-${server.id}`}
leftSection={
isSessionExpired ? (
<Icon
fill="error"
icon="lock"
/>
<Icon fill="error" icon="lock" />
) : (
<Icon
color={server.id === currentServer?.id ? 'primary' : undefined}
@ -186,10 +183,7 @@ export const AppMenu = () => {
>
{t('page.appMenu.openBrowserDevtools', { postProcess: 'sentenceCase' })}
</DropdownMenu.Item>
<DropdownMenu.Item
leftSection={<Icon icon="x" />}
onClick={handleQuit}
>
<DropdownMenu.Item leftSection={<Icon icon="x" />} onClick={handleQuit}>
{t('page.appMenu.quit', { postProcess: 'sentenceCase' })}
</DropdownMenu.Item>
</>