Skip to content

Commit cfc3b62

Browse files
[autofix.ci] apply automated fixes
1 parent 6a70902 commit cfc3b62

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

app/composables/npm/useReplacementDependencies.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import { parseDepValue } from '~/utils/npm/outdated-dependencies'
44
async function fetchReplacements(
55
deps: Record<string, string>,
66
): Promise<Record<string, ModuleReplacement>> {
7-
const names = [...new Set(
8-
Object.entries(deps).map(([key, value]) => parseDepValue(value).name ?? key),
9-
)]
7+
const names = [
8+
...new Set(Object.entries(deps).map(([key, value]) => parseDepValue(value).name ?? key)),
9+
]
1010

1111
const results = await Promise.all(
1212
names.map(async name => {

0 commit comments

Comments
 (0)