File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
packages/unhead/src/utils Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments