From f0bca5e5c94e1c3321925ab544768797885d631f Mon Sep 17 00:00:00 2001 From: Armando Urquiola Cabrera Date: Tue, 28 Nov 2023 01:26:20 +0100 Subject: [PATCH] Update part6d.md Hi, Correction with the Highlight section done! Greetings, Armando --- src/content/6/en/part6d.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/content/6/en/part6d.md b/src/content/6/en/part6d.md index 0257c536fac..2347b04db67 100644 --- a/src/content/6/en/part6d.md +++ b/src/content/6/en/part6d.md @@ -266,9 +266,11 @@ const App = () => { }, }) + // highlight-start const toggleImportance = (note) => { updateNoteMutation.mutate({...note, important: !note.important }) } + // highlight-end // ... }