dapoadedire / astro-pic-of-the-day

Documentation comments not found for functions and classes JS-D1001
Documentation
Minor
1 occurrence in this check
Documentation comment not found for arrow function searchAPOD
 1const API_KEY = import.meta.env.VITE_API_KEY;
 2
 3const searchAPOD = async ({ queryKey }) => { 4  const date = queryKey[1];
 5  const response = await fetch(
 6    `https://api.nasa.gov/planetary/apod?api_key=${API_KEY}&date=${date}`