Wappler 7.3.3
NodeJS
Before I start, just letting you know that I created this project by copying elements from another one (terrible idea, I know, but was for testing)
I can't isolate this problem but want to know if there's a solution:
I have this
<dmx-session-manager id="session1"></dmx-session-manager>
And I have any Server connect like this:
<dmx-serverconnect id="serverconnect_country" url="/api/public/geo/query_countries">
No errors on console.
Now if I add this:
ttl="3600" cache="session1"
Then:
<dmx-serverconnect id="serverconnect_country" url="/api/public/geo/query_countries" ttl="3600" cache="session1">

This is the schema of session storage:
And I see it under Application -> Session storage:
So I guess it's somehow working well
Also config.js under public/dmxAppConnect:
"main": {
"sessionStorage": [
{
"type": "text",
"name": "selectedGeo"
}
],
"localStorage": [
{
"type": "number",
"name": "selectedGeo"
}
]
},
But I can't figure it out how to fix that error..
Any ideas? Thanks

