Skip to content
This repository was archived by the owner on Nov 14, 2025. It is now read-only.

Commit 41692d3

Browse files
committed
chore: remove useless log
1 parent 12f3bb0 commit 41692d3

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
lines changed

RELEASE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Release
2+
3+
`git tag -a <version> -m "First release"`
4+
5+
`git push origin <version>` -> This will trigger an action and build the image with the correct tag
6+
7+
Create the release on [Github](https://github.com/ln-markets/umbrel/releases/new)
8+
9+
Fork [umbrel-apps](https://github.com/getumbrel/umbrel-apps) repo.
10+
11+
Update the `lnmarkets` folder with the correct image sha

apps/api/src/services/fetch.js

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,6 @@
11
export const fetchLnurl = async (hostname) => {
22
const url = new URL(`https://api.${hostname}/v2/lnurl/auth`)
33

4-
console.log(`[correct] fetching lnurl with ${url.toString()}`)
5-
64
const response = await fetch(url, {
75
method: 'post',
86
headers: { 'Content-Type': 'application/json' },
@@ -27,8 +25,6 @@ export const fetchToken = async (hostname, k1, hmac, sig, key) => {
2725
url.searchParams.append('key', key)
2826
url.searchParams.append('token', true)
2927

30-
console.log(`[correct] fetching token with ${url.toString()}`)
31-
3228
const response = await fetch(url)
3329

3430
if (!response.ok) {

0 commit comments

Comments
 (0)