فهرست منبع

Added semicolon on return statement

Shunm634-source 3 سال پیش
والد
کامیت
63344a596a
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      packages/app/src/stores/ui.tsx

+ 1 - 1
packages/app/src/stores/ui.tsx

@@ -74,7 +74,7 @@ const updateBodyClassesByEditorMode = (newEditorMode: EditorMode, isSidebar = fa
   const bodyElement = document.getElementsByTagName('body')[0];
   const bodyElement = document.getElementsByTagName('body')[0];
   if (bodyElement == null) {
   if (bodyElement == null) {
     logger.warn('The body tag was not successfully obtained');
     logger.warn('The body tag was not successfully obtained');
-    return
+    return;
   }
   }
   switch (newEditorMode) {
   switch (newEditorMode) {
     case EditorMode.View:
     case EditorMode.View: