Skip to content

Commit a72ee44

Browse files
committed
chore: broken build
1 parent 82ca799 commit a72ee44

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

packages/unhead/src/utils/meta.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ export function unpackMeta<T extends MetaFlat>(input: T): Required<ResolvableHea
194194

195195
for (const [propKey, propValue] of Object.entries(v)) {
196196
const metaKey = `${key}${propKey === 'url' ? '' : `:${propKey}`}`
197-
// @ts-expect-error untyped
198197
const meta = unpackMeta({ [metaKey]: propValue }) as UnheadMeta[]
199198
// @ts-expect-error untyped
200199
;(propKey === 'url' ? urlProps : otherProps).push(...meta)
@@ -204,7 +203,6 @@ export function unpackMeta<T extends MetaFlat>(input: T): Required<ResolvableHea
204203
}
205204
else {
206205
extras.push(...(typeof v === 'string'
207-
// @ts-expect-error untyped
208206
? unpackMeta({ [key]: v }) as UnheadMeta[]
209207
: handleObjectEntry(key, v)))
210208
}

0 commit comments

Comments
 (0)