next-learn icon indicating copy to clipboard operation
next-learn copied to clipboard

await does not work

Open EC-creator67 opened this issue 1 year ago • 0 comments

const HomePage = () => { const wixClient = useContext(WixClientContext);

useEffect(() => { const getProducts = async () => { const res = await wixClient.products.queryProducts().find();

};

getProducts();

}, [wixClient]);

EC-creator67 avatar Jul 18 '24 14:07 EC-creator67