Skip to content

Commit e59af5d

Browse files
committed
feat: remove hated it/loved it vote labels
1 parent 6eff4ef commit e59af5d

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

Voting/VoteReminderFormatter.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,13 +14,11 @@ public static string Format(VoteSummary summary)
1414
return
1515
"<size=80%><color=#FFFF00>Cast your vote for ZeepCentraal:</color></size><br>" +
1616
"<size=75%>" +
17-
"<size=50%><i>(hated it)</i></size> " +
1817
FormatChoice(summary, -2, "--", "#FF0000") + " " +
1918
FormatChoice(summary, -1, "-", "#FF8000") + " " +
2019
FormatChoice(summary, 0, "-+/+-", "#FFFF00") + " " +
2120
FormatChoice(summary, 1, "+", "#80FF00") + " " +
22-
FormatChoice(summary, 2, "++", "#00FF00") + " " +
23-
"<size=50%><i>(loved it)</i></size>" +
21+
FormatChoice(summary, 2, "++", "#00FF00") +
2422
"</size>";
2523
}
2624

@@ -32,6 +30,6 @@ private static string FormatChoice(VoteSummary summary, int voteValue, string la
3230

3331
long? count = summary.GetCount(voteValue);
3432
string countText = count?.ToString(CultureInfo.InvariantCulture) ?? "?";
35-
return $"{choice} <size=50%>({countText})</size>";
33+
return $"{choice}<size=50%>({countText})</size>";
3634
}
3735
}

0 commit comments

Comments
 (0)