POS UI Extension Modal Close listener

Is it possible to listen to a modal close event in the home screen render tile pos.home.tile.render?

I am on 2026-01 with preact and I do not see anything in the documentation to trigger an update on the rendered content displayed in the tile when I close the modal.

pos.home.tile.render does not expose any lifecycle hook or event (including modal close) that you can listen to. Once the tile is rendered, it won’t automatically re-render when a modal closes.

If you need updated content, you must explicitly trigger a re-render (e.g., by changing the tile state via your extension logic or forcing a refresh through navigation/state changes). @ms_stryker