Skip to content

Commit

Permalink
fix tags
Browse files Browse the repository at this point in the history
  • Loading branch information
tim-smart committed Feb 15, 2024
1 parent bb3a01d commit 9b450e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DebugEnv.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ const contextExpression = `[...globalThis["effect/FiberCurrent"]?._fiberRefs.loc
.map(_ => _[0][1])
.filter(_ => typeof _ === "object" && _ !== null && Symbol.for("effect/Context") in _)
.flatMap(context => [...context.unsafeMap.entries()])
.map(([tag, service]) => [tag.key, service])`
.map(([tag, service]) => [tag, service])`

const getContext = debugRequest<any>("evaluate", {
expression: contextExpression,
Expand Down

0 comments on commit 9b450e1

Please sign in to comment.