We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 108753d commit 5783167Copy full SHA for 5783167
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "unoapi-cloud",
3
- "version": "1.25.1",
+ "version": "1.25.2",
4
"description": "Unoapi Cloud",
5
"exports": "./dist/index.js",
6
"types": "./dist/index.d.ts",
public/index.html
@@ -484,6 +484,7 @@ <h5 class="modal-title" id="connectModalLabel">Conectar Sessão</h5>
484
fetch(apiUrl + '/sessions', { headers })
485
.then(response => {
486
if (!response.ok) throw new Error("Token inválido ou falha na conexão.");
487
+ localStorage.setItem(tokenKey, token);
488
return response.json();
489
})
490
.then(resp => {
0 commit comments