Providing Excess Context to an Effect: Performance Implications?

What's happening when I provide more than necessary context to an effect ?
const appServices: Layer.Layer<A | B | C, never, never>;

const myEffect: Effect<any, any, A>

const runnable = Effect.provide(myEffect, appServices);

will it have a downside / perf issues ?
Was this page helpful?