Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
const fetchData = async (url, opts) => {
try {
setQuery({ url, ...opts })
setError(null)
setStatus('fetching')
const { data } = await mql(url, { ...mqlOpts, ...opts })
setData(data)
setStatus('fetched')
} catch (err) {
setStatus('error')
setError(err)
}
}
async function fetchData () {
const { data } = await mql(url, {
meta: false,
iframe: true
})
setIframe(data.iframe)
}
fetchData()
const fetchAndSetData = async url => {
try {
const { data } = await mql(url, { iframe: true })
setData(data)
} catch (err) {}
}