Skip to content

Commit cadf9bf

Browse files
committed
fix: update site URL environment variable references
- Changed references from NEXT_PUBLIC_SITE_URL to NEXT_PUBLIC_APP_URL in organization profile and metadata files to ensure consistency in environment variable usage.
1 parent ab74f91 commit cadf9bf

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

app/(landing)/org/[slug]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Metadata } from 'next';
22
import { getOrganizationProfile } from '@/lib/api/organization';
33
import OrgProfileClient from './org-profile-client';
44

5-
const SITE_URL = process.env.NEXT_PUBLIC_SITE_URL || 'https://boundlessfi.xyz';
5+
const SITE_URL = process.env.NEXT_PUBLIC_APP_URL || 'https://boundlessfi.xyz';
66

77
interface OrgProfilePageProps {
88
params: Promise<{ slug: string }>;

lib/metadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export interface BlogPostMetadata extends PageMetadata {
2121
// Base metadata configuration
2222
const baseMetadata = {
2323
siteName: 'Boundless',
24-
siteUrl: process.env.NEXT_PUBLIC_SITE_URL || 'https://boundlessfi.xyz',
24+
siteUrl: process.env.NEXT_PUBLIC_APP_URL || 'https://boundlessfi.xyz',
2525
defaultOgImage:
2626
'https://res.cloudinary.com/danuy5rqb/image/upload/v1759143589/bondless-og-image_jufgnu.png',
2727
twitterHandle: '@boundlessfi',

0 commit comments

Comments
 (0)