delete console.log
This commit is contained in:
@@ -1,20 +1,20 @@
|
||||
import React, { useEffect } from "react";
|
||||
import React, { useEffect } from 'react';
|
||||
|
||||
import Spotlight from "@enact/spotlight";
|
||||
import Spotlight from '@enact/spotlight';
|
||||
|
||||
import TPanel from "../../components/TPanel/TPanel";
|
||||
import useLogService from "../../hooks/useLogService";
|
||||
import useScrollTo from "../../hooks/useScrollTo";
|
||||
import { LOG_MENU } from "../../utils/Config";
|
||||
import { SpotlightIds } from "../../utils/SpotlightIds";
|
||||
import css from "./MyPagePanel.module.less";
|
||||
import Favorites from "./MyPageSub/Favorites/Favorites";
|
||||
import MyInfo from "./MyPageSub/MyInfo/MyInfo";
|
||||
import MyOrders from "./MyPageSub/MyOrders/MyOrders";
|
||||
import RecentlyViewed from "./MyPageSub/RecentlyViewed/RecentlyViewed";
|
||||
import Reminders from "./MyPageSub/Reminders/Reminders";
|
||||
import Support from "./MyPageSub/Support/Support";
|
||||
import TermsOfService from "./MyPageSub/TermsOfService/TermsOfService";
|
||||
import TPanel from '../../components/TPanel/TPanel';
|
||||
import useLogService from '../../hooks/useLogService';
|
||||
import useScrollTo from '../../hooks/useScrollTo';
|
||||
import { LOG_MENU } from '../../utils/Config';
|
||||
import { SpotlightIds } from '../../utils/SpotlightIds';
|
||||
import css from './MyPagePanel.module.less';
|
||||
import Favorites from './MyPageSub/Favorites/Favorites';
|
||||
import MyInfo from './MyPageSub/MyInfo/MyInfo';
|
||||
import MyOrders from './MyPageSub/MyOrders/MyOrders';
|
||||
import RecentlyViewed from './MyPageSub/RecentlyViewed/RecentlyViewed';
|
||||
import Reminders from './MyPageSub/Reminders/Reminders';
|
||||
import Support from './MyPageSub/Support/Support';
|
||||
import TermsOfService from './MyPageSub/TermsOfService/TermsOfService';
|
||||
|
||||
export default function MyPagePanel({ panelInfo, isOnTop, spotlightId }) {
|
||||
const { sendLogGNB } = useLogService();
|
||||
@@ -34,8 +34,6 @@ export default function MyPagePanel({ panelInfo, isOnTop, spotlightId }) {
|
||||
|
||||
const SelectedComponent = menuId && myPageComponents[menuId];
|
||||
|
||||
console.log("chw", panelInfo);
|
||||
|
||||
useEffect(() => {
|
||||
const node = document.querySelector(`[id="${SpotlightIds.TBODY}"]`);
|
||||
if (node) {
|
||||
|
||||
Reference in New Issue
Block a user