File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -84,9 +84,7 @@ function hasRunningGroupExecution(rows: TableRow[] | undefined): boolean {
8484 return false
8585}
8686
87- function hasRunningGroupExecutionInPages (
88- pages : TableRowsResponse [ ] | undefined
89- ) : boolean {
87+ function hasRunningGroupExecutionInPages ( pages : TableRowsResponse [ ] | undefined ) : boolean {
9088 if ( ! pages ) return false
9189 for ( const page of pages ) {
9290 if ( hasRunningGroupExecution ( page . rows ) ) return true
Original file line number Diff line number Diff line change 2929} catch {
3030 // invalid URL — isHosted stays false
3131}
32- export const isHosted = true // appHostname === 'sim.ai' || appHostname.endsWith('.sim.ai')
32+ export const isHosted = appHostname === 'sim.ai' || appHostname . endsWith ( '.sim.ai' )
3333
3434/**
3535 * Is billing enforcement enabled
Original file line number Diff line number Diff line change @@ -138,9 +138,7 @@ export function optimisticallyScheduleNewlyEligibleGroups(
138138 next [ group . id ] = pending
139139 }
140140 if ( flipped > 0 ) {
141- logger . debug (
142- `[OptimisticCascade] row=${ beforeRow . id } flipped=${ flipped } skipped=${ skipped } `
143- )
141+ logger . debug ( `[OptimisticCascade] row=${ beforeRow . id } flipped=${ flipped } skipped=${ skipped } ` )
144142 }
145143 return next
146144}
You can’t perform that action at this time.
0 commit comments