---
title: "Hide the comment field during a transition"
canonical: "https://support.appfire.com/space/PSJ/15482482/Hide%20the%20comment%20field%20during%20a%20transition"
format: markdown
---
> Macro (aura-html)

  

This live field script is called during a transition and hides the **Comments** field.

```
if(argv["screen"] == "trans_41") {
    lfHide("comments_tab");
    lfHide("addComment");
}
```