diff --git a/src/endWeek/saChoosesOwnClothes.js b/src/endWeek/saChoosesOwnClothes.js
index 88df29d470329d5c24e93898f40618845f69998a..1b3792e2cc2f9e692a6f89d20e4e52c771f78eb4 100644
--- a/src/endWeek/saChoosesOwnClothes.js
+++ b/src/endWeek/saChoosesOwnClothes.js
@@ -98,7 +98,7 @@ window.saChoosesOwnClothes = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * @returns {string} // I think
+	 * @returns {{text:string, clothes:string}}
 	 */
 	function todaysOutfit(slave) {
 		const clothing = [];
@@ -956,7 +956,7 @@ window.saChoosesOwnClothes = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * @returns {string}
+	 * @returns {{text:string, shoes:string}}
 	 */
 	function todaysShoes(slave) {
 		const shoes = [];
@@ -1002,7 +1002,7 @@ window.saChoosesOwnClothes = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * @returns {string}
+	 * @returns {{text:string, collar:string}}
 	 */
 	function todaysCollar(slave) {
 		const neck = [];
@@ -1034,7 +1034,7 @@ window.saChoosesOwnClothes = (function() {
 
 	/**
 	 * @param {App.Entity.SlaveState} slave
-	 * @returns {string}
+	 * @returns {{text:string, bellyAccessory:string}}
 	 */
 	function todaysCorset(slave) {
 		const belly = [];
diff --git a/src/js/slaveSummaryWidgets.js b/src/js/slaveSummaryWidgets.js
index 03304ba6fac5556fab37566c718b378774ce294f..295ccb94dc41758a5310a1791742c12a74c3e0f1 100644
--- a/src/js/slaveSummaryWidgets.js
+++ b/src/js/slaveSummaryWidgets.js
@@ -5381,7 +5381,7 @@ App.UI.slaveSummaryList = function(passageName) {
 			case "Main":
 				if ((_Slave.choosesOwnClothes === 1) && (_Slave.clothes === "choosing her own clothes")) {
 					const _oldDevotion = _Slave.devotion;
-					// const _chosenClothes = saChoosesOwnClothes(_Slave);
+					saChoosesOwnClothes(_Slave);
 					slaves[_ssi].devotion = _oldDevotion;
 					_Slave = slaves[_ssi]; /* restore devotion value so repeatedly changing clothes isn't an exploit */
 				}