diff --git a/adze-web/src/ConfigureSection.js b/adze-web/src/ConfigureSection.js
index 68f37f1..e01ee49 100644
--- a/adze-web/src/ConfigureSection.js
+++ b/adze-web/src/ConfigureSection.js
@@ -1,3 +1,4 @@
+import React from 'react';
import Constants from './Constants.js'
import { selectManifest, uploadToHub } from './state/manifestSlice.js'
import { selectCredentials, validateCredentials } from './state/credentialsSlice.js'
diff --git a/adze-web/src/FeedSection.js b/adze-web/src/FeedSection.js
index c27fee4..f31850e 100644
--- a/adze-web/src/FeedSection.js
+++ b/adze-web/src/FeedSection.js
@@ -139,7 +139,7 @@ class ProvenanceDescription extends React.Component {
}
- return sharerParts.join(", ");;
+ return sharerParts.join(", ");
}
getFullShareDescription() {
diff --git a/adze-web/src/LinksSection.js b/adze-web/src/LinksSection.js
index 5d65cf2..56da427 100644
--- a/adze-web/src/LinksSection.js
+++ b/adze-web/src/LinksSection.js
@@ -1,37 +1,44 @@
-import React from 'react'
-
-
+import React, { useState } from 'react'
import Constants from './Constants.js'
+import { selectManifest, addLinkByUrl, removeLink } from './state/manifestSlice.js'
+import { selectCredentials } from './state/credentialsSlice.js'
+import { useSelector, useDispatch } from 'react-redux'
+import { ErrorMessageOrNull, ManifestStatusMessage } from './notifications.js'
-import { selectManifest , addLinkByUrl, removeLink } from './state/manifestSlice.js'
-import { selectCredentials } from './state/credentialsSlice.js'
-import { useSelector, useDispatch} from 'react-redux'
+const numberOfTags = 4;
-import { ErrorMessageOrNull, ManifestStatusMessage} from './notifications.js'
-
-function SingleLinkElement({link}){
- // upvote adze it to your own list of links
+function SingleLinkElement({ link }) {
+ // upvote adze it to your own list of links
// gives you the option of following the peer if you aren't already
- // downvote removes it from your feed, adze it to your list of 'no good'
+ // downvote removes it from your feed, adze it to your list of 'no good'
// links, and gives the option of removing that peer
- const dispatch = useDispatch();
-
- const removeThisLink = () => {
- dispatch(removeLink(link));
- }
-
- return (
-