Confused about System.now
Hi, I try to play around about System.now because i need to make timestamps users in my database but then i notice that timestamps was freeze to only first time i use System.now
So I try to make mini version of my timestamps but it have the same problem< Is it bug or i just confuse about it
Thx in advice.

5 Replies
No that's because blocks are executed at the same time here
Loom
Understanding Typebot Engine
In this video, I explain how the Typebot engine works and why certain things may not function as expected. I demonstrate an example using a lead generation template and a webhook call. I show how the server computes the blocks to be displayed on the client's browser and the importance of waiting for webhooks to be executed before the next input....
You might think the Wait block pauses the flow exactly where it is triggered but that is not the case
All the blocks between each input are always computed together
But you can enable the "Pause the flow" option (https://docs.typebot.io/editor/blocks/logic/wait#pause-the-flow)
Typebot Docs
Wait - Typebot Docs
thx