diff --git a/source/components/PaySlipSections.js b/source/components/PaySlipSections.js index c006ca9e4..de6f6df2f 100644 --- a/source/components/PaySlipSections.js +++ b/source/components/PaySlipSections.js @@ -50,7 +50,7 @@ export let SalaireNetSection = ({ getRule }) => { {/* Avantages en nature */} {/* Salaire net */} - + ) : null} diff --git a/source/components/conversation/SendButton.js b/source/components/conversation/SendButton.js index 3c2dc613c..f578d5c5d 100644 --- a/source/components/conversation/SendButton.js +++ b/source/components/conversation/SendButton.js @@ -26,18 +26,19 @@ export default compose(withTranslation())( return ( @@ -46,7 +47,7 @@ export default compose(withTranslation())( disabled={disabled} onClick={() => this.getAction()('accept')}> - valider ✓ + Suivant → diff --git a/source/components/conversation/TextArea.js b/source/components/conversation/TextArea.js deleted file mode 100644 index b67be113e..000000000 --- a/source/components/conversation/TextArea.js +++ /dev/null @@ -1,57 +0,0 @@ -import { compose } from 'ramda'; -import React, { Component } from 'react'; -import { Trans, withTranslation } from 'react-i18next'; -import { FormDecorator } from './FormDecorator'; - -export default compose( - FormDecorator('text-area'), - withTranslation() -)( - class Input extends Component { - render() { - let { - name, - input, - submit, - attributes, - meta: { touched, error }, - themeColours - } = this.props, - inputError = touched && error, - sendButtonDisabled = !input.value || inputError - - return ( - - -