Skip to content

Commit ff1529a

Browse files
ci: apply automated fixes
1 parent 82bf777 commit ff1529a

File tree

3 files changed

+38
-6
lines changed

3 files changed

+38
-6
lines changed

src/components/admin/FeedEntryEditor.tsx

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -414,7 +414,14 @@ export function FeedEntryEditor({
414414
activeColor: 'bg-yellow-500',
415415
},
416416
].map(
417-
({ id, label, description, checked, onChange, activeColor }) => (
417+
({
418+
id,
419+
label,
420+
description,
421+
checked,
422+
onChange,
423+
activeColor,
424+
}) => (
418425
<div
419426
key={id}
420427
className="flex items-center justify-between p-4 bg-gray-50 dark:bg-gray-700/50 rounded-lg cursor-pointer hover:bg-gray-100 dark:hover:bg-gray-700 transition-colors"

src/routes/_libraries/maintainers.tsx

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,9 +140,19 @@ function MaintainersFilter({
140140
<div className="flex items-center bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg">
141141
{(
142142
[
143-
{ mode: 'compact', Icon: Grid3X3, title: 'Compact cards', rounded: 'rounded-l-lg' },
143+
{
144+
mode: 'compact',
145+
Icon: Grid3X3,
146+
title: 'Compact cards',
147+
rounded: 'rounded-l-lg',
148+
},
144149
{ mode: 'full', Icon: Grid2X2, title: 'Full cards', rounded: '' },
145-
{ mode: 'row', Icon: LayoutList, title: 'Row cards', rounded: 'rounded-r-lg' },
150+
{
151+
mode: 'row',
152+
Icon: LayoutList,
153+
title: 'Row cards',
154+
rounded: 'rounded-r-lg',
155+
},
146156
] as const
147157
).map(({ mode, Icon, title, rounded }) => (
148158
<button

src/routes/_libraries/paid-support.tsx

Lines changed: 18 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,9 +60,24 @@ function PaidSupportComp() {
6060
<div className="flex items-center bg-white dark:bg-gray-800 border border-gray-200 dark:border-gray-700 rounded-lg">
6161
{(
6262
[
63-
{ mode: 'compact', Icon: Grid3X3, title: 'Compact cards', rounded: 'rounded-l-lg' },
64-
{ mode: 'full', Icon: Grid2x2, title: 'Full cards', rounded: '' },
65-
{ mode: 'row', Icon: LayoutList, title: 'Row cards', rounded: 'rounded-r-lg' },
63+
{
64+
mode: 'compact',
65+
Icon: Grid3X3,
66+
title: 'Compact cards',
67+
rounded: 'rounded-l-lg',
68+
},
69+
{
70+
mode: 'full',
71+
Icon: Grid2x2,
72+
title: 'Full cards',
73+
rounded: '',
74+
},
75+
{
76+
mode: 'row',
77+
Icon: LayoutList,
78+
title: 'Row cards',
79+
rounded: 'rounded-r-lg',
80+
},
6681
] as const
6782
).map(({ mode, Icon, title, rounded }) => (
6883
<button

0 commit comments

Comments
 (0)