Search code examples
reactjstypescriptapollo

Type 'number' is not assignable to type 'Spec<any, never>'.ts(2322)


I'm getting the above mentioned error on items: { $splice: [[[index], 1]] }.

enter image description here

How do I resolve this?

My partial repo: https://github.com/TheoMer/next_apollo


Solution

  • Make [index] as any to remove the type error.

    [[index] as any,1]