Browse Source

:pencil2: Fixed merge issues

juan-filtering-match-pool
tomit4 2 years ago
parent
commit
e328f039f9
2 changed files with 2 additions and 1 deletions
  1. 1
    0
      frontend/src/router/guards.js
  2. 1
    1
      frontend/src/views/OnboardingView.vue

+ 1
- 0
frontend/src/router/guards.js View File

@@ -14,6 +14,7 @@ async function log(to) {
14 14
     }
15 15
 }
16 16
 
17
+// TODO: move to utils/index.js and import to this file, OnboardingView.vue and VerifyView.vue
17 18
 const grabStoredCookie = cookieKey => {
18 19
     const cookies = document.cookie.split('; ').reduce((prev, current) => {
19 20
         const [name, ...value] = current.split('=')

+ 1
- 1
frontend/src/views/OnboardingView.vue View File

@@ -30,7 +30,7 @@ main.view--onboarding
30 30
             p(v-if='currentStep != 0') You have completed: {{ currentStep }} / {{ survey?.steps?.length }} survey steps
31 31
 
32 32
     article(v-else)
33
-        SurveyCompleteView(:surveySteps='survey.steps' :responses='responses')
33
+        SurveyCompleteView(:answers='answered' :surveySteps='survey.steps' :responses='responses')
34 34
 </template>
35 35
 
36 36
 <script>

Loading…
Cancel
Save