diff --git a/apps/api/src/services/fetch.js b/apps/api/src/services/fetch.js index 93b0512..dac8b07 100644 --- a/apps/api/src/services/fetch.js +++ b/apps/api/src/services/fetch.js @@ -1,10 +1,7 @@ export const fetchLnurl = async (hostname) => { const url = new URL(`https://api.${hostname}/v2/lnurl/auth`) - const response = await fetch(url, { - method: 'post', - headers: { 'Content-Type': 'application/json' }, - }) + const response = await fetch(url, { method: 'post' }) if (!response.ok) { const error = await response.text()