Custom component model attirubutes are empty when subscribe method called

I need to integrate google maps to my retool app. For this, I created custom component. I have a viiew container and three view inside it. I use this module on all views but one of them is not working. Except others, one of them do not populate inputs and on subscribe method, model attributes are null.

This is subscribe method.

window.Retool.subscribe(function (model) {
  console.log("subscribe called, model: ", model);
  if (!model) {
    return;
  }
  console.log("model: ", model);
});

On my app I get following console outputs.

subscribe called, model: 
model:  

On my app, inputs are:

Hi @safayildirim, check out this thread:

It includes a JSON export for an App to see the setup.