From 6f074db27663d6858b6b7c18baf8dc182c79e048 Mon Sep 17 00:00:00 2001 From: Nick Downing Date: Tue, 25 Jan 2022 18:08:33 +1100 Subject: [PATCH] Fix unnecessary extra syntax in /_config/Problem.mjs --- _config/Problem.mjs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_config/Problem.mjs b/_config/Problem.mjs index ef11607..9d55df5 100644 --- a/_config/Problem.mjs +++ b/_config/Problem.mjs @@ -1,4 +1,4 @@ -let Problem = class { +class Problem { constructor(title, detail, status) { this.title = title this.detail = detail -- 2.34.1