1const fetchUser = async (id) => {
2 const res = await fetch('/api/user', id) ⊘ Expected 1 arg, got 2
3 const data = await res.json() ⚠ 'data' is declared but never read
4 return res.user ⊘ Property 'user' does not exist
5}
6
7const userId = 42
8fetchUser(userId).then(console.log)