Skip to content

Commit acf1bd5

Browse files
removed console logs
1 parent 6305a33 commit acf1bd5

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/App.jsx

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ function App() {
2424
const [testimonials, setTestimonials] = useState([])
2525

2626
useEffect(() => {
27-
console.log("USE EFFECT ---------")
2827
sanityClient
2928
.fetch(
3029
`*[_type in ["testimonial", "portfolio","service"]]{
@@ -61,7 +60,6 @@ function App() {
6160
let tempProjects = []
6261
let tempServices = []
6362

64-
console.log("DATA ", data)
6563
data.map((doc) => {
6664
if (doc.country) {
6765
// It is a testimonial
@@ -80,8 +78,6 @@ function App() {
8078
setServices(tempServices)
8179
})
8280
.catch(console.error)
83-
84-
console.log("BLOCK END")
8581
}, [])
8682

8783
useEffect(() => {

0 commit comments

Comments
 (0)