For a while intelliSense was working fine, so if I auto-imported different methods from the same library, it was doing it in one line like:
import React, { useState, useEffect } from 'react`;
Recently when auto importing methods, it results in:
import React from 'react`;
import { useState } from 'react`;
import { useEffect } from 'react`;
Anyone has any idea why this is happening?