diff --git a/src/endWeek/saRest.js b/src/endWeek/saRest.js
index 87ebcf033c35d8cda751f3c90d094ac289e22572..1f8c45ce893ac59b8347bcfb883bb459931a2f3e 100644
--- a/src/endWeek/saRest.js
+++ b/src/endWeek/saRest.js
@@ -1,13 +1,16 @@
-/* eslint-disable no-undef */
-/* eslint-disable no-unused-vars */
 window.saRest = /** @param {App.Entity.SlaveState} slave */ function saRest(slave) {
+	const pronouns = getPronouns(slave);
+	const he = pronouns.pronoun;
+	const him = pronouns.object;
+	const his = pronouns.possessive;
+	const hers = pronouns.possessivePronoun;
+	const himself = pronouns.objectReflexive;
+	const boy = pronouns.noun;
+	const He = capFirstChar(he);
+	const His = capFirstChar(his);
+	const V = State.variables;
 
-	var pronouns = getPronouns(slave);
-	var he = pronouns.pronoun, him = pronouns.object, his = pronouns.possessive, hers = pronouns.possessivePronoun, himself = pronouns.objectReflexive, boy = pronouns.noun;
-	var He = capFirstChar(he), His = capFirstChar(his);
-	var V = State.variables;
-
-	var t = ` takes the week off.`;
+	let t = " takes the week off.";
 
 	if (slave.fuckdoll > 0) {
 		t += ` ${He} has nothing to do but `;
@@ -54,7 +57,7 @@ window.saRest = /** @param {App.Entity.SlaveState} slave */ function saRest(slav
 	}
 
 	if (V.showVignettes === 1 && slave.assignment === Job.REST) {
-		var _vignette = GetVignette(slave);
+		const _vignette = GetVignette(slave);
 		t += ` __This week__ ${_vignette.text} `;
 		if (_vignette.type === "cash") {
 			if (_vignette.effect > 0) {