@arex95/vue-core 1.1.14 → 1.1.15
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.mjs +1 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -3141,6 +3141,7 @@ function useAuth(secretKey = getSecretKey()) {
|
|
|
3141
3141
|
const response = await axiosInstance.post(config.endpoints.LOGIN, params);
|
|
3142
3142
|
await storeEncryptedItem(config.storageKeys.ACCESS_TOKEN, response.data.access_token, secretKey, isRememberMe);
|
|
3143
3143
|
await storeEncryptedItem(config.storageKeys.REFRESH_TOKEN, response.data.refresh_token, secretKey, isRememberMe);
|
|
3144
|
+
await jwt.value;
|
|
3144
3145
|
return response;
|
|
3145
3146
|
}
|
|
3146
3147
|
catch (error) {
|