"Only When" inside vs outside the Execute block


#1

Just wondering if it makes a difference whether I put an “only when” outside the execute block, or as the first thing inside it?

For example:

ONLY WHEN sleep mode is off
__EXECUTE:
____IF presence sensor 1 presence changes to present
______THEN set light 1 level to 100%

EXECUTE:
__ONLY WHEN sleep mode is off
____IF presence sensor 1’s presence changes to present
______THEN set light 1 level to 100%