Skip to content

Commit 5657e04

Browse files
Fix lint after merge
1 parent e6edf01 commit 5657e04

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

app/lib/test/csvToDoneEntries.test.ts

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { contacts } from "data/contacts"
2-
import { projects } from "data/projects"
32
import { E, pipe } from "lib/Effect"
43
import { type BaseTestCase } from "lib/runTestCases"
54
import { ContactCollection, ProvidedContacts } from "schema/ContactCollection"
@@ -62,12 +61,7 @@ const errorPadding = Math.max(...testCases.filter(tc => tc.error).map(tc => labe
6261
const TestContacts = new ContactCollection(contacts)
6362

6463
const decode = (csv: string) =>
65-
pipe(
66-
csv,
67-
csvToDoneEntries,
68-
E.provideService(ProvidedContacts, TestContacts),
69-
E.runSync,
70-
)
64+
pipe(csv, csvToDoneEntries, E.provideService(ProvidedContacts, TestContacts), E.runSync)
7165

7266
for (const testCase of testCases) {
7367
const { input, only, skip } = testCase

app/ui/DailyDones.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import { type LocalDate } from "@js-joda/core"
22
import { cx } from "lib/cx"
3-
import { E } from "lib/Effect"
43
import { useState } from "react"
54
import { type Contact } from "schema/Contact"
65
import { DoneEntry } from "schema/DoneEntry"

0 commit comments

Comments
 (0)