Started code review + some fixes (unfinished)
[vchess.git] / client / src / data / problemCheck.js
index 3b9ccb4..652daae 100644 (file)
@@ -1,9 +1,8 @@
-export function checkProblem(p)
-{
+export function checkProblem(p) {
   const vid = parseInt(p.vid);
-  if (isNaN(vid) || vid <= 0)
-    return "Please select a variant";
+  if (isNaN(vid) || vid <= 0) return "Please select a variant";
 
-  if (!V.IsGoodFen(p.fen))
-    return "Bad FEN string";
+  if (!V.IsGoodFen(p.fen)) return "Bad FEN string";
+
+  return "";
 }