Skip to content

Commit

Permalink
remove stale type assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
mccraigmccraig committed Nov 15, 2023
1 parent a977cf9 commit b9d296c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/object_builders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ export function objectStepFn<Obj>() {

console.log("OBJECT STEP FN v", step.k, v)

const r = { [step.k]: v } as { [_K in K]: V }
const r = { [step.k]: v }
console.log("END OBJECT STEP FN r", step.k, r)
return r
}) as ObjectStepFnReturnEffect<Step>
Expand Down

0 comments on commit b9d296c

Please sign in to comment.