Skip to content
This repository has been archived by the owner on Jan 5, 2023. It is now read-only.
Permalink

Comparing changes

This is a direct comparison between two commits made in this repository or its related repositories. View the default comparison for this range or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: effect-app/todo-sample
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 360c4048a988a8427f08a1966dc8b5c082920392
Choose a base ref
..
head repository: effect-app/todo-sample
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 62b9246a54ba8f21a43374248603f0ba5e9144fc
Choose a head ref
Showing with 2 additions and 2 deletions.
  1. +2 −2 apps/api/_services/TodoContext.testdata.ts
4 changes: 2 additions & 2 deletions apps/api/_services/TodoContext.testdata.ts
Original file line number Diff line number Diff line change
@@ -18,7 +18,7 @@ import {

function makeUserTaskCreator(u: User) {
return flow(
User.createTask(u),
User.createTaskR(u),
Task.lens["|>"](Lens.prop("title"))["|>"](
Lens.modify((t) => reasonableStringUnsafe(`${u.name} - ${t}`))
)
@@ -48,7 +48,7 @@ export function makeTestDataUnsafe() {

const users = [patrick, mike, markus]

const createPatrickList = User.createTaskList(patrick)
const createPatrickList = User.createTaskListR(patrick)
const patrickList = createPatrickList({
title: reasonableStringUnsafe("Some Patrick List"),
})