diff --git a/source/components/SchemeComparaison.js b/source/components/SchemeComparaison.js
index 15886f568..ba9596450 100644
--- a/source/components/SchemeComparaison.js
+++ b/source/components/SchemeComparaison.js
@@ -217,7 +217,7 @@ const SchemeComparaison = ({
- Provision mensuelle
+ Provision mensuelle ou trimestrielle
(avec régularisation après coup en fonction du revenu réel)
diff --git a/source/components/conversation/Conversation.js b/source/components/conversation/Conversation.js
index abe42ec7e..70847684e 100644
--- a/source/components/conversation/Conversation.js
+++ b/source/components/conversation/Conversation.js
@@ -1,7 +1,6 @@
import { goToQuestion, resetSimulation, skipQuestion } from 'Actions/actions'
import { T } from 'Components'
import QuickLinks from 'Components/QuickLinks'
-import Scroll from 'Components/utils/Scroll'
import { getInputComponent } from 'Engine/generateQuestions'
import { compose } from 'ramda'
import React from 'react'
@@ -48,64 +47,54 @@ export default compose(
goToNext()
}
}
- return (
-
- {nextSteps.length ? (
- <>
-
-
- {currentQuestion && (
-
-
- {getInputComponent(flatRules)(currentQuestion)}
-
-
- {previousAnswers.length > 0 && (
- <>
-
- >
- )}
+ return nextSteps.length ? (
+ <>
+
+
+ {currentQuestion && (
+
+
+ {getInputComponent(flatRules)(currentQuestion)}
+
+
+ {previousAnswers.length > 0 && (
+ <>
-
-
- )}
-
-
- >
- ) : (
-
-
- {emoji('🌟')}{' '}
- Vous avez complété cette simulation{' '}
-
-
- {customEndMessages ? (
- customEndMessages
- ) : (
-
- Vous avez maintenant accès à l'estimation la plus précise
- possible.
-
- )}
-
-
-
- )}
-
+ >
+ )}
+
+
+
+ )}
+
+
+ >
+ ) : (
+
+
+ {emoji('🌟')}{' '}
+ Vous avez complété cette simulation{' '}
+
+
+ {customEndMessages ? (
+ customEndMessages
+ ) : (
+
+ Vous avez maintenant accès à l'estimation la plus précise possible.
+
+ )}
+
+
+
)
})