diff --git a/com.twin.app.shoptime/src/App/App.js b/com.twin.app.shoptime/src/App/App.js
index 73f14c10..b66c3bc8 100644
--- a/com.twin.app.shoptime/src/App/App.js
+++ b/com.twin.app.shoptime/src/App/App.js
@@ -1,20 +1,13 @@
-import React, {
- useCallback,
- useEffect,
- useRef,
-} from 'react';
+import React, { useCallback, useEffect, useRef } from "react";
-import {
- useDispatch,
- useSelector,
-} from 'react-redux';
+import { useDispatch, useSelector } from "react-redux";
-import platform from '@enact/core/platform';
-import { Job } from '@enact/core/util';
-import ThemeDecorator from '@enact/sandstone/ThemeDecorator';
-import Spotlight from '@enact/spotlight';
+import platform from "@enact/core/platform";
+import { Job } from "@enact/core/util";
+import ThemeDecorator from "@enact/sandstone/ThemeDecorator";
+import Spotlight from "@enact/spotlight";
-import appinfo from '../../webos-meta/appinfo.json';
+import appinfo from "../../webos-meta/appinfo.json";
import {
changeAppStatus,
checkFirstLaunch,
@@ -28,34 +21,26 @@ import {
setDeepLink,
setGNBMenu,
setSecondLayerInfo,
-} from '../actions/commonActions';
-import { getShoptimeTerms } from '../actions/empActions';
-import {
- getHomeMenu,
- getHomeTerms,
-} from '../actions/homeActions';
+} from "../actions/commonActions";
+import { getShoptimeTerms } from "../actions/empActions";
+import { getHomeMenu, getHomeTerms } from "../actions/homeActions";
import {
getMyRecommandedKeyword,
getMyUpcomingAlertShow,
-} from '../actions/myPageActions';
-import { pushPanel } from '../actions/panelActions';
-import NotSupportedVersion
- from '../components/NotSupportedVersion/NotSupportedVersion';
-import usePrevious from '../hooks/usePrevious';
-import { lunaTest } from '../lunaSend/lunaTest';
-import { store } from '../store/store';
-import * as Config from '../utils/Config';
-import {
- $L,
- clearLaunchParams,
- getLaunchParams,
-} from '../utils/helperMethods';
-import { SpotlightIds } from '../utils/SpotlightIds';
-import ErrorBoundary from '../views/ErrorBoundary';
-import MainView from '../views/MainView/MainView';
-import css from './App.module.less';
-import { handleBypassLink } from './bypassLinkHandler';
-import { handleDeepLink } from './deepLinkHandler';
+} from "../actions/myPageActions";
+import { pushPanel } from "../actions/panelActions";
+import NotSupportedVersion from "../components/NotSupportedVersion/NotSupportedVersion";
+import usePrevious from "../hooks/usePrevious";
+import { lunaTest } from "../lunaSend/lunaTest";
+import { store } from "../store/store";
+import * as Config from "../utils/Config";
+import { $L, clearLaunchParams, getLaunchParams } from "../utils/helperMethods";
+import { SpotlightIds } from "../utils/SpotlightIds";
+import ErrorBoundary from "../views/ErrorBoundary";
+import MainView from "../views/MainView/MainView";
+import css from "./App.module.less";
+import { handleBypassLink } from "./bypassLinkHandler";
+import { handleDeepLink } from "./deepLinkHandler";
let foreGroundChangeTimer = null;
@@ -387,21 +372,21 @@ function AppBase(props) {
}, [dispatch]);
return (
-
- {webOSVersion === "" ? null : Number(webOSVersion) < 4 ? (
-
- ) : (
-
- )}
-
+ //
+ // {webOSVersion === "" ? null : Number(webOSVersion) < 4 ? (
+ //
+ // ) : (
+
+ // )}
+ //
);
}