Learn localStorage by Building a Todo App - Step 52

Tell us what’s happening:

Am i missing something simple here? can’t seem to clear this one

const formInputValuesUpdated =
titleInput.value !== currentTask.title || 
dateInput.value !== currentTask.date || 
descriptionInput.value !== currentTask.description;

### Your code so far


```html
<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

const formInputValuesUpdated =
titleInput.value !== currentTask.title || 
dateInput.value !== currentTask.date || 
descriptionInput.value !== currentTask.description;

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/130.0.0.0 Safari/537.36

Challenge Information:

Learn localStorage by Building a Todo App - Step 52

Hi @SMSTR

Try removing the line breaks.

Happy coding

1 Like

tried that - still will not pass

I just tested your code without the line breaks and it passes

can you share your updated code please?

it finally passed when typed out as a single continuous line, with the breaks

1 Like

Thanks, i had the exact same problem. And this solves it :slight_smile:

1 Like