Skip to content

Commit 9a0b3a2

Browse files
fix lint, ci
1 parent 29cade9 commit 9a0b3a2

3 files changed

Lines changed: 3 additions & 7 deletions

File tree

apps/sim/hooks/queries/tables.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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

apps/sim/lib/core/config/feature-flags.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ try {
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

apps/sim/lib/table/deps.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)