Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added public/assets/partners/cashgamehost.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/assets/partners/walletchan.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
12 changes: 12 additions & 0 deletions src/lib/constants/integrations.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ import Web3Identity from 'public/assets/partners/web3identity.jpg'
import EnsView from 'public/assets/partners/ensview.jpg'
import Status from 'public/assets/partners/status.png'
import DMPay from 'public/assets/partners/dmpay.jpg'
import WalletChan from 'public/assets/partners/walletchan.jpg'
import CashGameHost from 'public/assets/partners/cashgamehost.jpg'

export const INTEGRATIONS = [
{
Expand Down Expand Up @@ -142,6 +144,11 @@ export const INTEGRATIONS = [
url: 'https://yodl.me/',
logo: Yodl,
},
{
name: 'Walletchan',
url: 'https://walletchan.com/',
logo: WalletChan,
},
{
name: 'Vision',
url: 'https://vision.io/',
Expand Down Expand Up @@ -482,6 +489,11 @@ export const INTEGRATIONS = [
url: 'https://app.dmpay.me/',
logo: DMPay,
},
{
name: 'Cash Game Host',
url: 'https://cash-game-organizer-app.vercel.app/',
logo: CashGameHost,
},
Comment on lines +492 to +496
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Description: Verify the Cash Game Host URL is accessible and appears to be production-ready

# Check if the URL is accessible
curl -s -o /dev/null -w "HTTP Status: %{http_code}\n" "https://cash-game-organizer-app.vercel.app/" 

# Also check if there might be a custom domain by looking at the HTML title/meta
curl -s "https://cash-game-organizer-app.vercel.app/" | grep -i -E "<title>|<meta.*name=\"description\"" | head -5

Repository: ethereumfollowprotocol/app

Length of output: 2689


Update Cash Game Host URL to the correct production domain.

The URL should be https://cashgamehost.com/ instead of https://cash-game-organizer-app.vercel.app/. The Vercel deployment subdomain is hosting the application, but the canonical production URL (confirmed by og:url meta tag) is the custom domain.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@src/lib/constants/integrations.ts` around lines 492 - 496, Update the URL
value for the integration object whose name is "Cash Game Host" by replacing the
current url 'https://cash-game-organizer-app.vercel.app/' with the canonical
production domain 'https://cashgamehost.com/' (keep the existing logo reference
CashGameHost and only change the url property in the integrations list/constant
where name: 'Cash Game Host').

] as {
name: string
url: string
Expand Down
Loading