[App.js] 부분 테스트값 제거

- getSubCategory 테스트값 제거 했습니다.
This commit is contained in:
junghoon86.park
2024-02-05 13:07:57 +09:00
parent 54fee9815a
commit a8ebe10027

View File

@@ -1,25 +1,22 @@
import React, { useEffect } from 'react'; import React, { useEffect } from "react";
import { useDispatch } from 'react-redux'; import { useDispatch } from "react-redux";
import ThemeDecorator from '@enact/sandstone/ThemeDecorator'; import ThemeDecorator from "@enact/sandstone/ThemeDecorator";
import { getBrandList } from '../actions/brandActions'; import { getBrandList } from "../actions/brandActions";
import { getAuthenticationCode } from '../actions/deviceActions'; import { getAuthenticationCode } from "../actions/deviceActions";
import { import {
getHomeLayout, getHomeLayout,
getHomeMainContents, getHomeMainContents,
getHomeMenu, getHomeMenu,
getThemeCurationInfo, getThemeCurationInfo,
} from '../actions/homeActions'; } from "../actions/homeActions";
import { import { getSubCategory, getTop20Show } from "../actions/mainActions";
getSubCategory, import { getMyRecommandedKeyword } from "../actions/myPageActions";
getTop20Show, import { getBestSeller } from "../actions/productActions";
} from '../actions/mainActions'; import MainView from "../views/MainView/MainView";
import { getMyRecommandedKeyword } from '../actions/myPageActions'; import css from "./App.module.less";
import { getBestSeller } from '../actions/productActions';
import MainView from '../views/MainView/MainView';
import css from './App.module.less';
function AppBase(props) { function AppBase(props) {
const dispatch = useDispatch(); const dispatch = useDispatch();
@@ -34,7 +31,7 @@ function AppBase(props) {
dispatch(getBestSeller()); dispatch(getBestSeller());
dispatch( dispatch(
getSubCategory({ getSubCategory({
lgCatCd: "1000", lgCatCd: "",
patnrIdList: "", patnrIdList: "",
pageSize: "", pageSize: "",
tabType: "", tabType: "",