useState does not work with another prop function which uses dispatch from useReducer

I have a function contains prop function and useState hook together that attached onClick event.

When event was fired, prop function works but my local useState hook does not work. If I delete prop function, everything is okay and hook is running. I can not understand why my hook does not work with prop function.

You can see the function. props.add works fine but setBookmarked doesnt work.

And here, you can check my prop function.

Any idea?