Ask AI
Skip to main content

Unused Code

The Unused Code analyzer detects function instances in your action that can never be reached during execution.

A function instance becomes unreachable when no path from the start node leads to it. This typically happens when you reconnect or restructure your logic and leave behind orphaned blocks.

How to fix it

Either connect the orphaned function instance back into your logic, or delete it if it's no longer needed.

Severity

Small - unused code doesn't break anything, but it clutters your action and makes it harder to understand.