diff --git a/src/components/BasicShop/BasicComponents/Footer/index.tsx b/src/components/BasicShop/BasicComponents/Footer/index.tsx index bb9911e..4ccbca0 100644 --- a/src/components/BasicShop/BasicComponents/Footer/index.tsx +++ b/src/components/BasicShop/BasicComponents/Footer/index.tsx @@ -2,7 +2,6 @@ import React, { memo } from 'react'; import { IFooterConfig } from './schema'; const Footer = memo((props: IFooterConfig) => { const { bgColor, text, color, align, fontSize, height } = props; - console.log(props); return ( <> {props.isTpl && ( diff --git a/src/components/BasicShop/BasicComponents/WhiteTpl/index.tsx b/src/components/BasicShop/BasicComponents/WhiteTpl/index.tsx index 0361248..9ef8f3b 100644 --- a/src/components/BasicShop/BasicComponents/WhiteTpl/index.tsx +++ b/src/components/BasicShop/BasicComponents/WhiteTpl/index.tsx @@ -9,7 +9,6 @@ interface IProps extends IWhiteTplConfig { const WhiteTpl = memo((props: IProps) => { const { bgColor, text, fontSize, color, height, isTpl } = props; - console.log('data', bgColor, text, fontSize, color, height); return (