diff --git a/src/interaction/policies/policies.js b/src/interaction/policies/policies.js
index 154f0a0b9dcb1e0c0b21c68076e0c60ee6d68637..02b49b8ae9e1756aa4ea215c173d2284fc865289 100644
--- a/src/interaction/policies/policies.js
+++ b/src/interaction/policies/policies.js
@@ -60,14 +60,14 @@ globalThis.policy = function(category) {
 				if (!(p.hasOwnProperty("hide") && p.hide.button === 1)) {
 					if (p.hasOwnProperty("requirements")) {
 						if (p.requirements === true) {
-							el.append(implement(p, enable));
+							el.append(` `, implement(p, enable));
 						} else {
 							const link = App.UI.DOM.disabledLink("Implement", [`You do not meet the requirements, or passed a conflicting policy already`]);
 							link.style.color = "white";
 							el.append(link);
 						}
 					} else {
-						el.append(implement(p, enable));
+						el.append(` `, implement(p, enable));
 					}
 				}
 				policyArray.push(el);
@@ -97,7 +97,7 @@ globalThis.policy = function(category) {
 			el.append((p.hasOwnProperty("activatedText")) ? p.activatedText : p.text);
 
 			// link
-			el.append(repeal(p));
+			el.append(` `, repeal(p));
 			policyArray.push(el);
 		} else {
 			throw `V.${policyVariable} not initialized properly, "${policyValue}"`;