The autofix for styled-react imports seems to be trying to combine the updated imports with matching imports, but doesn't consider subpaths with doing so. So autofixing the following:
import {Dialog} from '@primer/styled-react/experimental'
import {Flash, FormControl, Textarea, TextInput} from '@primer/react'
Results in everything being imported under @primer/react/experimental, which has to be manually fixed:
import {Flash, FormControl, Textarea, TextInput, Dialog} from '@primer/react/experimental'