Skip to content

Commit 4bbf211

Browse files
waleedlatif1claude
andcommitted
fix(landing): convert relative imports to absolute in integrations (shell) page
Build failed because the move into the (shell) route group invalidated relative `./components/...` and `./data/...` imports. CLAUDE.md mandates absolute imports throughout — switching these resolves the Turbopack build errors. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent 89e7ee1 commit 4bbf211

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

  • apps/sim/app/(landing)/integrations/(shell)

apps/sim/app/(landing)/integrations/(shell)/page.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
import type { Metadata } from 'next'
22
import { Badge } from '@/components/emcn'
33
import { SITE_URL } from '@/lib/core/utils/urls'
4-
import { IntegrationCard } from './components/integration-card'
5-
import { IntegrationGrid } from './components/integration-grid'
6-
import { RequestIntegrationModal } from './components/request-integration-modal'
7-
import { blockTypeToIconMap } from './data/icon-mapping'
8-
import integrations from './data/integrations.json'
9-
import { POPULAR_WORKFLOWS } from './data/popular-workflows'
10-
import type { Integration } from './data/types'
4+
import { IntegrationCard } from '@/app/(landing)/integrations/components/integration-card'
5+
import { IntegrationGrid } from '@/app/(landing)/integrations/components/integration-grid'
6+
import { RequestIntegrationModal } from '@/app/(landing)/integrations/components/request-integration-modal'
7+
import { blockTypeToIconMap } from '@/app/(landing)/integrations/data/icon-mapping'
8+
import integrations from '@/app/(landing)/integrations/data/integrations.json'
9+
import { POPULAR_WORKFLOWS } from '@/app/(landing)/integrations/data/popular-workflows'
10+
import type { Integration } from '@/app/(landing)/integrations/data/types'
1111

1212
const allIntegrations = integrations as Integration[]
1313
const INTEGRATION_COUNT = allIntegrations.length

0 commit comments

Comments
 (0)