Skip to content
Prev Previous commit
Next Next commit
Fix lint
  • Loading branch information
Theodore Li committed Mar 19, 2026
commit fdb6039cdba8ee666cb7464fde26ba6bb5013b7f
6 changes: 3 additions & 3 deletions apps/sim/lib/core/config/feature-flags.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ export const isTest = env.NODE_ENV === 'test'
/**
* Is this the hosted version of the application
*/
export const isHosted = true;
// getEnv('NEXT_PUBLIC_APP_URL') === 'https://www.sim.ai' ||
// getEnv('NEXT_PUBLIC_APP_URL') === 'https://www.staging.sim.ai'
export const isHosted =
getEnv('NEXT_PUBLIC_APP_URL') === 'https://www.sim.ai' ||
getEnv('NEXT_PUBLIC_APP_URL') === 'https://www.staging.sim.ai'

/**
* Is billing enforcement enabled
Expand Down
7 changes: 1 addition & 6 deletions apps/sim/tools/registry.ts
Original file line number Diff line number Diff line change
Expand Up @@ -454,12 +454,7 @@ import {
fathomListTeamMembersTool,
fathomListTeamsTool,
} from '@/tools/fathom'
import {
fileParserV2Tool,
fileParserV3Tool,
fileParseTool,
fileWriteTool,
} from '@/tools/file'
import { fileParserV2Tool, fileParserV3Tool, fileParseTool, fileWriteTool } from '@/tools/file'
import {
firecrawlAgentTool,
firecrawlCrawlTool,
Expand Down
Loading