Pomodoro Clock - setInterval problem? - SOLVED

Tell us what’s happening:
I have created a pomodoro clock app with react + redux, works as it should but still failing on tests which has to do with the countdown function, which are: #11, #22, #23, #24, #25, #26
Can anybody look at my code and give me direction how to fix this?

error message is the same at all the failing tests:

“Timeout of 5000ms exceeded. For async tests and hooks, ensure “done()” is called; if returning a Promise, ensure it resolves.
Error: Timeout of 5000ms exceeded. For async tests and hooks, ensure “done()” is called; if returning a Promise, ensure it resolves.
at o.f._timeoutError (https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:570:32569)
at https://cdn.freecodecamp.org/testable-projects-fcc/v1/bundle.js:570:30700

Your code so far

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/69.0.3497.100 Safari/537.36.

Link to the challenge:
https://learn.freecodecamp.org/front-end-libraries/front-end-libraries-projects/build-a-pomodoro-clock/

turned out it was the two space character around “:” in the display, removing that and it works, yay!