I think it could be the following....:
You can only pass one object directly from navigation. Your page currently requires two parameters (“Input” and “Summary”), causing errors. To fix this, open the page from a microflow (or nanoflow) that returns both objects. For example:
Change the navigation bar’s on-click action to call a microflow.
In that microflow, create/retrieve both “Input” and “Summary” objects, then return them in one of these ways:
Pass “Input” directly as the page parameter and retrieve “Summary” in a nested data view (using a microflow data source).
Or structure the page to need only a single object, and then fetch or associate the other object within the page.
This ensures the page gets the required object(s) without the direct navigation call trying to supply two objects at once.