Skip to content

Commit d2e4afd

Browse files
committed
remove import expression
1 parent bbf5c66 commit d2e4afd

File tree

1 file changed

+2
-2
lines changed
  • apps/sim/lib/core/execution-limits

1 file changed

+2
-2
lines changed

apps/sim/lib/core/execution-limits/types.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { env } from '@/lib/core/config/env'
22
import type { SubscriptionPlan } from '@/lib/core/rate-limiter/types'
33

4-
export interface ExecutionTimeoutConfig {
4+
interface ExecutionTimeoutConfig {
55
sync: number
66
async: number
77
}
@@ -25,7 +25,7 @@ function getSyncTimeoutForPlan(plan: SubscriptionPlan): number {
2525
return (Number.parseInt(envVarMap[plan] || '') || DEFAULT_SYNC_TIMEOUTS[plan]) * 1000
2626
}
2727

28-
export const EXECUTION_TIMEOUTS: Record<SubscriptionPlan, ExecutionTimeoutConfig> = {
28+
const EXECUTION_TIMEOUTS: Record<SubscriptionPlan, ExecutionTimeoutConfig> = {
2929
free: {
3030
sync: getSyncTimeoutForPlan('free'),
3131
async: ASYNC_TIMEOUT_SECONDS * 1000,

0 commit comments

Comments
 (0)