[App] 불필요 api 삭제
Detail Notes : 1. getOnSaleInfo 삭제
This commit is contained in:
@@ -1,23 +1,25 @@
|
||||
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 { getAuthenticationCode } from "../actions/deviceActions";
|
||||
import { getBrandList } from '../actions/brandActions';
|
||||
import { getAuthenticationCode } from '../actions/deviceActions';
|
||||
import {
|
||||
getHomeLayout,
|
||||
getHomeMainContents,
|
||||
getHomeMenu,
|
||||
getThemeCurationInfo,
|
||||
} from "../actions/homeActions";
|
||||
import { getSubCategory, getTop20Show } from "../actions/mainActions";
|
||||
import { getMyRecommandedKeyword } from "../actions/myPageActions";
|
||||
import { getOnSaleInfo } from "../actions/onSaleActions";
|
||||
import { getBestSeller } from "../actions/productActions";
|
||||
import MainView from "../views/MainView/MainView";
|
||||
import css from "./App.module.less";
|
||||
} from '../actions/homeActions';
|
||||
import {
|
||||
getSubCategory,
|
||||
getTop20Show,
|
||||
} from '../actions/mainActions';
|
||||
import { getMyRecommandedKeyword } from '../actions/myPageActions';
|
||||
import { getBestSeller } from '../actions/productActions';
|
||||
import MainView from '../views/MainView/MainView';
|
||||
import css from './App.module.less';
|
||||
|
||||
function AppBase(props) {
|
||||
const dispatch = useDispatch();
|
||||
@@ -27,7 +29,6 @@ function AppBase(props) {
|
||||
dispatch(getHomeMenu());
|
||||
dispatch(getHomeLayout());
|
||||
dispatch(getHomeMainContents());
|
||||
dispatch(getOnSaleInfo({ categoryIncFlag: "Y", lgCatCd: "" }));
|
||||
dispatch(getBrandList());
|
||||
dispatch(getMyRecommandedKeyword());
|
||||
dispatch(getBestSeller());
|
||||
|
||||
Reference in New Issue
Block a user