We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6305a33 commit acf1bd5Copy full SHA for acf1bd5
src/App.jsx
@@ -24,7 +24,6 @@ function App() {
24
const [testimonials, setTestimonials] = useState([])
25
26
useEffect(() => {
27
- console.log("USE EFFECT ---------")
28
sanityClient
29
.fetch(
30
`*[_type in ["testimonial", "portfolio","service"]]{
@@ -61,7 +60,6 @@ function App() {
61
60
let tempProjects = []
62
let tempServices = []
63
64
- console.log("DATA ", data)
65
data.map((doc) => {
66
if (doc.country) {
67
// It is a testimonial
@@ -80,8 +78,6 @@ function App() {
80
78
setServices(tempServices)
81
79
})
82
.catch(console.error)
83
-
84
- console.log("BLOCK END")
85
}, [])
86
87
0 commit comments