File tree Expand file tree Collapse file tree
features/dashboard/layouts Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -71,7 +71,6 @@ NEXT_PUBLIC_SUPABASE_ANON_KEY=your_supabase_anon_key
7171# ## When enabled, the E2B status is read from the incident.io summary API
7272# NEXT_PUBLIC_INCLUDE_STATUS_INDICATOR=0
7373# NEXT_PUBLIC_STATUS_PAGE_URL=https://statuspage.incident.io/e2b-service
74- # NEXT_PUBLIC_STATUS_PAGE_SUMMARY_URL=https://statuspage.incident.io/e2b-service/api/v2/summary.json
7574
7675# ## Set to 1 to use mock data
7776# NEXT_PUBLIC_MOCK_DATA=0
Original file line number Diff line number Diff line change @@ -27,11 +27,6 @@ export function getStatusPageUrl() {
2727}
2828
2929export function getStatusPageSummaryUrl ( statusPageUrl : string ) {
30- const configuredSummaryUrl =
31- process . env . NEXT_PUBLIC_STATUS_PAGE_SUMMARY_URL ?. trim ( )
32-
33- if ( configuredSummaryUrl ) return configuredSummaryUrl
34-
3530 return `${ statusPageUrl } /api/v2/summary.json`
3631}
3732
Original file line number Diff line number Diff line change @@ -56,7 +56,6 @@ export const clientSchema = z.object({
5656 NEXT_PUBLIC_INCLUDE_REPORT_ISSUE : z . string ( ) . optional ( ) ,
5757 NEXT_PUBLIC_INCLUDE_STATUS_INDICATOR : z . string ( ) . optional ( ) ,
5858 NEXT_PUBLIC_STATUS_PAGE_URL : z . url ( ) . optional ( ) ,
59- NEXT_PUBLIC_STATUS_PAGE_SUMMARY_URL : z . url ( ) . optional ( ) ,
6059 NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY : z . string ( ) . optional ( ) ,
6160 NEXT_PUBLIC_SCAN : z . string ( ) . optional ( ) ,
6261 NEXT_PUBLIC_MOCK_DATA : z . string ( ) . optional ( ) ,
You can’t perform that action at this time.
0 commit comments