Просмотр исходного кода

:pencil2: Fixed merge issues

juan-filtering-match-pool
tomit4 2 лет назад
Родитель
Сommit
aed2c800b2
2 измененных файлов: 3 добавлений и 3 удалений
  1. 1
    0
      frontend/src/entities/profile/profile.js
  2. 2
    3
      frontend/src/views/OnboardingView.vue

+ 1
- 0
frontend/src/entities/profile/profile.js Просмотреть файл

28
      * @return {boolean} is it valid or not?
28
      * @return {boolean} is it valid or not?
29
      */
29
      */
30
     isValid() {
30
     isValid() {
31
+        console.log('this :=>', this)
31
         const validate = profileSchema.validate(this)
32
         const validate = profileSchema.validate(this)
32
 
33
 
33
         /**
34
         /**

+ 2
- 3
frontend/src/views/OnboardingView.vue Просмотреть файл

99
         async verifySession(hashedAccessToken) {
99
         async verifySession(hashedAccessToken) {
100
             if (!hashedAccessToken)
100
             if (!hashedAccessToken)
101
                 return console.warn('WARNING :=> accessToken is not defined')
101
                 return console.warn('WARNING :=> accessToken is not defined')
102
-            const validatedToken = await authenticator.validateSession(
103
-                hashedAccessToken,
104
-            )
102
+            const validatedToken =
103
+                await authenticator.validateSession(hashedAccessToken)
105
             if (validatedToken.error) {
104
             if (validatedToken.error) {
106
                 throw new Error(validatedToken.error)
105
                 throw new Error(validatedToken.error)
107
             } else {
106
             } else {

Загрузка…
Отмена
Сохранить