Change fallback base URL to 'https://stirling.com'

This commit is contained in:
Anthony Stirling 2025-09-17 08:34:55 +01:00 committed by GitHub
parent 190178a471
commit 49a10a3865
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3,5 +3,5 @@ import { useAppConfig } from '../hooks/useAppConfig';
// Get base URL from app config with fallback // Get base URL from app config with fallback
export const getBaseUrl = (): string => { export const getBaseUrl = (): string => {
const { config } = useAppConfig(); const { config } = useAppConfig();
return config?.baseUrl || 'https://demo.stirlingpdf.com'; return config?.baseUrl || 'https://stirling.com';
}; };