diff --git a/app/components/activity/CitationForm.jsx b/app/components/activity/CitationForm.jsx
index 5563e0be4764a71e8d7dfcabffda151674f9bad7..f2f1d4e71ae07e52db1b65f7a6e21102223fc431 100644
--- a/app/components/activity/CitationForm.jsx
+++ b/app/components/activity/CitationForm.jsx
@@ -80,7 +80,7 @@ const CiteUrl = props => (
   <TextField
     className={props.className}
     invalidTest={props.invalidTest}
-    label="Citation URL"
+    label="Citation URL (always include)"
     {...props.field}
   />
 )
@@ -174,7 +174,7 @@ const CitationForm = ({ values, errors, touched, ...props }) => (
     </div>
     <Flex>
       <div>
-        <H4>Print date</H4>
+        <H4>Print date (Issue date)</H4>
         <Field
           component={PYear}
           invalidTest={errors.printyear && touched.printyear}
diff --git a/server/ebi-integration/app.js b/server/ebi-integration/app.js
index 69a421bf39438b0355a9e0cb5ea2e1c10927617f..16f1df0053757e51dec9000b6c3380ccaf5f9b1f 100644
--- a/server/ebi-integration/app.js
+++ b/server/ebi-integration/app.js
@@ -16,7 +16,7 @@ module.exports = async app => {
     if (clientId) {
       if (ManuscriptManager.findById(clientId, adminUser.id, null, false)) {
         res.status(200).send('Callback response recieved')
-        await new Promise(resolve => setTimeout(resolve, 900))
+        await new Promise(resolve => setTimeout(resolve, 1000))
         completeCitation(body, req.query.token)
       } else {
         res.status(503).send('ERROR: Database unavailable')
@@ -33,7 +33,7 @@ module.exports = async app => {
       if (ManuscriptManager.findById(clientId, adminUser.id, null, false)) {
         const { token, indexOnly } = req.query
         res.status(200).send('Callback response recieved')
-        await new Promise(resolve => setTimeout(resolve, 900))
+        await new Promise(resolve => setTimeout(resolve, 1000))
         preprintComplete(body, token, !!indexOnly)
       } else {
         res.status(503).send('ERROR: Database unavailable')
@@ -50,7 +50,7 @@ module.exports = async app => {
       if (ManuscriptManager.findById(clientId, adminUser.id, null, false)) {
         const { token, indexOnly } = req.query
         res.status(200).send('Callback response recieved')
-        await new Promise(resolve => setTimeout(resolve, 900))
+        await new Promise(resolve => setTimeout(resolve, 1000))
         resendComplete(body, token, !!indexOnly)
       } else {
         res.status(503).send('ERROR: Database unavailable')