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

@ -109,10 +109,7 @@ export const Sidebar = () => {
})}
id="left-sidebar"
>
<Group
grow
id="global-search-container"
>
<Group grow id="global-search-container">
<ActionBar />
</Group>
<ScrollArea
@ -134,10 +131,7 @@ export const Sidebar = () => {
>
<Accordion.Item value="library">
<Accordion.Control>
<Text
fw={600}
variant="secondary"
>
<Text fw={600} variant="secondary">
{t('page.sidebar.myLibrary', {
postProcess: 'titleCase',
})}
@ -146,10 +140,7 @@ export const Sidebar = () => {
<Accordion.Panel>
{sidebarItemsWithRoute.map((item) => {
return (
<SidebarItem
key={`sidebar-${item.route}`}
to={item.route}
>
<SidebarItem key={`sidebar-${item.route}`} to={item.route}>
<Group gap="sm">
<SidebarIcon
active={location.pathname === item.route}
@ -170,10 +161,7 @@ export const Sidebar = () => {
)}
</Accordion>
</ScrollArea>
<AnimatePresence
initial={false}
mode="popLayout"
>
<AnimatePresence initial={false} mode="popLayout">
{showImage && (
<motion.div
animate={{ opacity: 1, y: 0 }}