@griddo/ax 1.75.99 → 1.75.101

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@griddo/ax",
3
3
  "description": "Griddo Author Experience",
4
- "version": "1.75.99",
4
+ "version": "1.75.101",
5
5
  "authors": [
6
6
  "Álvaro Sánchez' <alvaro.sanches@secuoyas.com>",
7
7
  "Carlos Torres <carlos.torres@secuoyas.com>",
@@ -230,5 +230,5 @@
230
230
  "publishConfig": {
231
231
  "access": "public"
232
232
  },
233
- "gitHead": "adb76cff53177e9f73fefb7ab502440575a24aab"
233
+ "gitHead": "83df13095b687fc2e4eaddcb109b730b701fbdef"
234
234
  }
@@ -137,6 +137,7 @@ function createPassword(id: string, params: ICreatePasswordParams): (dispatch: D
137
137
 
138
138
  const responseActions = {
139
139
  handleSuccess: async (response: any) => {
140
+ dispatch(appActions.setToken(response.token));
140
141
  await getUser("me", response.token)(dispatch);
141
142
  },
142
143
  handleError: (response: any) => appActions.handleError(response)(dispatch),