Skip to content

Commit 5a1ca08

Browse files
committed
chore: format
1 parent fa9c688 commit 5a1ca08

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

Diff for: tutorials/address-book/app/data.ts

+4-1
Original file line numberDiff line numberDiff line change
@@ -311,6 +311,9 @@ export async function deleteContact(id: string) {
311311
].forEach((contact) => {
312312
fakeContacts.create({
313313
...contact,
314-
id: `${contact.first.toLowerCase().split(' ').join('_')}-${contact.last.toLocaleLowerCase()}`,
314+
id: `${contact.first
315+
.toLowerCase()
316+
.split(" ")
317+
.join("_")}-${contact.last.toLocaleLowerCase()}`,
315318
});
316319
});

0 commit comments

Comments
 (0)