diff --git a/src/art/vector/VectorArtJS.js b/src/art/vector/VectorArtJS.js
index f6f27e361c08af1fc33331b1854b8614682893d3..e34bee4be6c3d2843e0afb4e2c5c6f913cb70070 100644
--- a/src/art/vector/VectorArtJS.js
+++ b/src/art/vector/VectorArtJS.js
@@ -470,14 +470,14 @@ App.Art.makeVectorArtStyle = function(slave, artSize) {
 
 		function setEarTColor() {
 			/* mainly for catmod */
-			if (slave.earT != "none"){
+			if (slave.earT !== "none") {
 				earTColor = extractColor(slave.earTColor);
 			}
 		}
 
 		function setTailColor() {
 			/* mainly for catmod */
-			if (slave.tailShape != "none"){
+			if (slave.tailShape !== "none") {
 				tailColor = extractColor(slave.tailColor);
 			}
 		}
@@ -1139,11 +1139,13 @@ App.Art.vectorArtElement = (function() {
 
 	function ArtVectorTail() {
 		switch (slave.tailShape) {
-			case "neko":
 			case "cat":
+			case "leopard":
+			case "tiger":
+			case "jaguar":
 				svgQueue.add("Art_Vector_Cat_Tail");
 				break;
-			case "kit":
+			case "kitsune":
 			case "fox":
 				svgQueue.add("Art_Vector_Fox_Tail");
 				break;
@@ -2030,7 +2032,7 @@ App.Art.vectorArtElement = (function() {
 						switch (slave.hStyle) {
 							case "buzzcut":
 							case "shaved":
-							case "shaved bald":
+							case "bald":
 								svgQueue.add("Art_Vector_Hair_Back_NoHair");
 								break;
 							case "afro":
@@ -2070,11 +2072,12 @@ App.Art.vectorArtElement = (function() {
 		}
 		/* note: latex clothing actually shows some hair, but there is no appropriate art for it */
 		switch (slave.earT) {
-			case "neko":
+			case "leopard":
+			case "tiger":
+			case "jaguar":
 			case "cat":
 				svgQueue.add("Art_Vector_Cat_Ear_Back");
 				break;
-			case "kit":
 			case "fox":
 				svgQueue.add("Art_Vector_Fox_Ear_Back");
 				break;
@@ -2179,11 +2182,12 @@ App.Art.vectorArtElement = (function() {
 		}
 		/* note: latex clothing actually shows some hair, but there is no appropriate art for it */
 		switch (slave.earT) {
-			case "neko":
+			case "leopard":
+			case "tiger":
+			case "jaguar":
 			case "cat":
 				svgQueue.add("Art_Vector_Cat_Ear_Fore");
 				break;
-			case "kit":
 			case "fox":
 				svgQueue.add("Art_Vector_Fox_Ear_Fore");
 				break;
diff --git a/src/endWeek/player/prDrugs.js b/src/endWeek/player/prDrugs.js
index 4b7be0f3c2a2621dabd8fe3172eff109b76af048..b86e38686167500ccc1a746fbb1243466c9de6e1 100644
--- a/src/endWeek/player/prDrugs.js
+++ b/src/endWeek/player/prDrugs.js
@@ -837,7 +837,7 @@ App.EndWeek.Player.drugs = function(PC = V.PC) {
 				} else if (PC.diet === PCDiet.FERTILITY) {
 					r.push(`The fertility enhancing hormones in your food slightly disrupts your growth.`);
 					growth -= 0.1;
-				} else if (PC.diet === PCDiet.MALE || PC.PCDiet === Diet.FEMALE || PC.PCDiet === Diet.FUTA) {
+				} else if (PC.diet === PCDiet.MALE || PC.diet === PCDiet.FEMALE || PC.diet === PCDiet.FUTA) {
 					r.push(`The fertility hormones in your food inhibits growth.`);
 					growth -= 0.5;
 				} else if (PC.diet === PCDiet.CLEANSE) {
diff --git a/src/facilities/surgery/multiImplant.js b/src/facilities/surgery/multiImplant.js
index a1d983184265b9b62eb0ab97c901c458833c44d3..e35f5de192a757ae2ba399d06c64babcd81d1a94 100644
--- a/src/facilities/surgery/multiImplant.js
+++ b/src/facilities/surgery/multiImplant.js
@@ -256,6 +256,7 @@ App.UI.multipleOrganImplant = function() {
 						}
 						break;
 					default:
+						// @ts-expect-error - p.id must be inferred as `never` if the switch is exhaustive
 						App.UI.DOM.appendNewElement("span", div, `Since there is no automated procedure to implant/attach ${App.Data.prosthetics[p.id].name} it will be put into storage.`, "note");
 				}
 			}
diff --git a/src/interaction/main/mainLinks.js b/src/interaction/main/mainLinks.js
index f3766f80e8e51f8f0d8dea1418ccca5b9219c10b..8a94d7f4a8c9feb29d5949fcc689b9f182e16655 100644
--- a/src/interaction/main/mainLinks.js
+++ b/src/interaction/main/mainLinks.js
@@ -42,7 +42,7 @@ App.UI.View.mainLinks = function() {
 				fragment.append(`You plan to make some easy (but dirty) money this week.`);
 				break;
 			case PersonalAttention.FIGHT:
-				text.push(`You plan to enter a fistfight for some quick (but hopefully not too bloody) money this week.`);
+				fragment.append(`You plan to enter a fistfight for some quick (but hopefully not too bloody) money this week.`);
 				break;
 			case PersonalAttention.SUPPORTHG:
 				fragment.append(`You plan to support your Head Girl this week, `);
@@ -60,16 +60,16 @@ App.UI.View.mainLinks = function() {
 				fragment.append(`You plan to take it easy this week.`);
 				break;
 			case PersonalAttention.STUDY:
-				text.push(`This week you will work on getting a general education.`);
+				fragment.append(`This week you will work on getting a general education.`);
 				break;
 			case PersonalAttention.GED:
-				text.push(`This week you are taking a test to prove you have a general education.`);
+				fragment.append(`This week you are taking a test to prove you have a general education.`);
 				break;
 			case PersonalAttention.EDUCATION:
-				text.push(`This week you are pursuing an advanced education.`);
+				fragment.append(`This week you are pursuing an advanced education.`);
 				break;
 			case PersonalAttention.TEST:
-				text.push(`This week you are attempting to complete your advanced education.`);
+				fragment.append(`This week you are attempting to complete your advanced education.`);
 				break;
 			case PersonalAttention.TRADE:
 				fragment.append(`This week you will learn trading.`);
diff --git a/src/js/wombJS.js b/src/js/wombJS.js
index efef5349fafc060d06246f87beee88882b7caae7..0d923bfd934b8f666d919ac74d052aea67b7d57b 100644
--- a/src/js/wombJS.js
+++ b/src/js/wombJS.js
@@ -823,7 +823,7 @@ globalThis.WombRemoveReservedFetuses = function(actor, type) {
 globalThis.WombCleanAllReserve = function(actor) {
 	actor.womb.forEach(function(ft) {
 		ft.reserve = "";
-		delete fetus.tankSetting;
+		delete ft.tankSetting;
 	});
 };