Hi @VSEVq ,
The review button is inside the Gallery, based on checking the item is the last step in the collection, if true the button would show up.

Please check the formula of the Visible property if you have ever modified:
//visible only on the last step
If(
!gblAppMobileOnDesktop,
If(
ThisItem.'Checklist Step'.'Area Inspection Checklist Step' = Last(
Sort(
colLastInspectionSteps,
Sequence,
Ascending
)
).'Checklist Step'.'Area Inspection Checklist Step',
true,
false
)
)
Hope this helps.
Best regards,
Community Support Team _ Jeffer Ni
If this post helps, then please consider Accept it as the solution to help the other members find it.