Confusing Exit Logs: Misleading Effects

is there a reason the exit logs as if it were an effect? i was so confused until I realized it was just completely deceiving me

first image:
        console.log(
          'previousReview',
          Exit.isExit(previousReview),
          previousReview,
        );


Second image:
        console.log(
          'previousReview',
          Exit.isExit(previousReview),
          previousReview.toString(),
        );
image.png
image.png
Was this page helpful?