figma-development-kit
Advanced tools
Comparing version 1.0.14 to 1.0.15
{ | ||
"name": "figma-development-kit", | ||
"version": "1.0.14", | ||
"version": "1.0.15", | ||
"description": "A set of tools that augment the Figma API", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
@@ -58,3 +58,3 @@ const storageKeyForAuthorizationCodeData = 'figma-authorization-code-data'; | ||
const {access_token, expires_in} = responseObject; | ||
const expireOnEpoch = Date.now() + expires_in; | ||
const expireOnEpoch = Date.now() + expires_in * 1000; | ||
return {token: access_token, expireOnEpoch}; | ||
@@ -61,0 +61,0 @@ }); |
14170