Skip to content

Commit 838cf32

Browse files
[autofix.ci] apply automated fixes
1 parent f518e4a commit 838cf32

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

app/components/OgImage/Compare.vue

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,7 @@ const ACCENT_COLORS = ['#60a5fa', '#f472b6', '#34d399', '#fbbf24']
1919
2020
const displayPackages = computed(() => {
2121
const raw = props.packages
22-
const list = (typeof raw === 'string' ? raw.split(',') : raw)
23-
.map(p => p.trim())
24-
.filter(Boolean)
22+
const list = (typeof raw === 'string' ? raw.split(',') : raw).map(p => p.trim()).filter(Boolean)
2523
return list.slice(0, 4)
2624
})
2725

0 commit comments

Comments
 (0)