To reproduce, create a customer details POS block extension via CLI and add a timestamp text to the block, e.g.
<POSBlock action={{ title: "Edit", onPress: api.action.presentModal }}>
<POSBlockRow>
<Text>{new Date().toLocaleString()}</Text>
</POSBlockRow>
</POSBlock>
Open the POS action associated with the block and then close it. Notice that the timestamp doesn’t change (the block doesn’t re-render after the action is closed).
I’d like to have the capability to re-render the POS block, so that when the user opens the associated action and makes changes, such changes would be reflected on the block. This would be consistent with other customer data updates in POS (e.g. address, name, etc.), which are updated after changes in their respective actions.
This is reproducible on both Android and iOS devices. API version - 2025-07.