Commit 39b3f566 authored by Kevin Kaminski's avatar Kevin Kaminski

[AFP-26] 🚧 remove unused lines of code, remove console log statements [@kkaminski]

parent b334ad96
...@@ -27,8 +27,6 @@ const AuthPage = () => { ...@@ -27,8 +27,6 @@ const AuthPage = () => {
onFailure={responseGoogle} onFailure={responseGoogle}
cookiePolicy={'single_host_origin'} cookiePolicy={'single_host_origin'}
/> />
{/* <LoginForm />
<LoginForm /> */}
</div> </div>
) )
} }
......
...@@ -11,25 +11,6 @@ const OrderShowPage = (props: any) => { ...@@ -11,25 +11,6 @@ const OrderShowPage = (props: any) => {
setOrder(res); setOrder(res);
}) })
}) })
// console.log(props);
console.log(order);
console.log(JSON.stringify(order) !== JSON.stringify({}));
// orderInfo.
// const orderShowDetailsArr = orderInfo
// const [order, setOrder] = React.useState(null)
// React.useEffect(() => {
// OrderService.orderById()
// .then(orderData => setOrder(orderData))
// return () => {
// // componentDidUnmount
// }
// })
if (!order) { if (!order) {
return(<></>); return(<></>);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment