diff --git a/lib/exmr_web/live/exam_live/index.html.heex b/lib/exmr_web/live/exam_live/index.html.heex
index 6d69e74..2c12037 100644
--- a/lib/exmr_web/live/exam_live/index.html.heex
+++ b/lib/exmr_web/live/exam_live/index.html.heex
@@ -27,28 +27,40 @@
{exam.date} |
{case Date.diff(exam.date, Date.utc_today()) do
- 0 -> gettext("Today")
- 1 -> gettext("Tommorow")
- x when x > 1 -> ngettext("Tomorrow", "%{count} days left", x)
- x when x < 0 -> ngettext("Yesterday", "%{count} days passed", x * -1)
- end}
+ 0 -> gettext("Today")
+ 1 -> gettext("Tommorow")
+ x when x > 1 -> ngettext("Tomorrow", "%{count} days left", x)
+ x when x < 0 -> ngettext("Yesterday", "%{count} days passed", x * -1)
+ end}
-