Home > Mobile >  VSCode Intellisense adding "={}" after grabbing existing variable in typescript
VSCode Intellisense adding "={}" after grabbing existing variable in typescript

Time:01-26

My intellisense had been working fine.. but after a recent upgrade it seems like things have broken:

enter image description here

classNames is used as a function, and filterBy is a previously defined variable - I don't understand why intellisense has changed to all of the sudden add ="" and ={} when grabbing these previously defined variables.. is there configuration I need to change?

CodePudding user response:

I was able to fix this by removing the JavaScript and TypeScript Nightly VSC extension.

You can also workaround this issue by changing the setting 'JSX Attribute Completion Style' to none.

  • Related