Probably caused by #9184?
Possible related to #13580?
Prettier 2.8.1
Playground link
Input:
@each $name, $hue in $hues {
$map: map.merge(
$map,
(
'#{$prefix}-#{$name}': blend.set($base, $hue: $hue),
)
);
}
Output:
@each $name, $hue in $hues {
$map: map.merge($map, ('#{$prefix}-#{$name}': blend.set($base $hue: $hue)));
}
Expected behavior:
Comma should not be removed from blend.set($base, $hue: $hue) call.
Probably caused by #9184?
Possible related to #13580?
Prettier 2.8.1
Playground link
Input:
Output:
Expected behavior:
Comma should not be removed from
blend.set($base, $hue: $hue)call.