fix: remove unnecessary logs and edit comments

This commit is contained in:
lucas-neynar 2025-03-19 13:11:31 -07:00
parent 6038c38644
commit bbf4978c6e
No known key found for this signature in database
3 changed files with 2 additions and 4 deletions

View File

@ -50,7 +50,6 @@ async function queryNeynarApp(apiKey) {
} }
); );
const data = await response.json(); const data = await response.json();
console.log('Neynar app data:', data);
return data; return data;
} catch (error) { } catch (error) {
console.error('Error querying Neynar app data:', error); console.error('Error querying Neynar app data:', error);

View File

@ -42,7 +42,6 @@ async function queryNeynarApp(apiKey) {
} }
); );
const data = await response.json(); const data = await response.json();
console.log('Neynar app data:', data);
return data; return data;
} catch (error) { } catch (error) {
console.error('Error querying Neynar app data:', error); console.error('Error querying Neynar app data:', error);

View File

@ -116,14 +116,14 @@ async function startDev() {
1. Open Warpcast on your phone 1. Open Warpcast on your phone
2. Go to Settings > Developer > Frames 2. Go to Settings > Developer > Frames
4. Enter this URL: ${tunnel.url} 4. Enter this URL: ${tunnel.url}
5. Click "Launch" (note that it may take ~10 seconds to load) 5. Click "Preview" (note that it may take ~10 seconds to load)
`); `);
} else { } else {
frameUrl = 'https://localhost:3000'; frameUrl = 'https://localhost:3000';
console.log(` console.log(`
💻 To test your frame: 💻 To test your frame:
1. Open the Warpcast Frame Developer Tools: https://warpcast.com/~/developers/frames 1. Open the Warpcast Frame Developer Tools: https://warpcast.com/~/developers/frames
2. Scroll down to the "Launch Frame" tool 2. Scroll down to the "Preview Frame" tool
3. Enter this URL: ${frameUrl} 3. Enter this URL: ${frameUrl}
4. Click "Preview" to test your frame 4. Click "Preview" to test your frame