Hi again, this one is a bit harder to reproduce exactly, because Weave seems to automatically do this:
Base:
import type { Foo } from "./foo"
import {
type a,
type b,
type c,
} from "./foo"
Incoming change:
import {
type Foo,
type a,
type b,
type c,
} from "./foo"
What I've seen Weave produce a few times is this:
After:
type Foo,
type a,
type b,
type c,
} from "./foo"
(note the dropped import {)
Hi again, this one is a bit harder to reproduce exactly, because Weave seems to automatically do this:
Base:
Incoming change:
What I've seen Weave produce a few times is this:
After:
(note the dropped
import {)