Issue with `S.pluck` and `S.omit` combination in Effect Typescript

is it expected that this doesn't work?

playground: https://effect.website/play/#d50f357356f3

S.Struct({
  stripmeoff: S.Struct({
    omitme: S.String,
    body: S.String
  })
}).pipe(
  S.pluck("stripmeoff"),
  S.omit("omitme")
)
Was this page helpful?