Skip to content

Commit 065f90c

Browse files
committed
fix: rebased
1 parent c1f16c6 commit 065f90c

File tree

8 files changed

+368
-367
lines changed

8 files changed

+368
-367
lines changed

apps/sim/app/resume/[workflowId]/[executionId]/resume-page-client.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ import { Separator } from '@/components/ui/separator'
2828
import { Textarea } from '@/components/ui/textarea'
2929
import { useBrandConfig } from '@/lib/branding/branding'
3030
import Nav from '@/app/(landing)/components/nav/nav'
31-
import { inter } from '@/app/fonts/inter'
31+
import { inter } from '@/app/fonts/inter/inter'
3232
import { soehne } from '@/app/fonts/soehne/soehne'
3333
import type { ResumeStatus } from '@/executor/types'
3434

apps/sim/app/templates/[id]/template.tsx

Lines changed: 354 additions & 360 deletions
Large diffs are not rendered by default.

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel-new/components/editor/components/sub-block/components/code/code.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ import { Button } from '@/components/ui/button'
1616
import { CodeLanguage } from '@/lib/execution/languages'
1717
import { createLogger } from '@/lib/logs/console/logger'
1818
import { cn } from '@/lib/utils'
19-
import { isLikelyReferenceSegment, SYSTEM_REFERENCE_PREFIXES, splitReferenceSegment } from '@/lib/workflows/references'
19+
import {
20+
isLikelyReferenceSegment,
21+
SYSTEM_REFERENCE_PREFIXES,
22+
splitReferenceSegment,
23+
} from '@/lib/workflows/references'
2024
import {
2125
checkEnvVarTrigger,
2226
EnvVarDropdown,

apps/sim/app/workspace/[workspaceId]/w/[workflowId]/components/panel-new/components/editor/components/sub-block/components/condition-input/condition-input.tsx

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@ import {
1616
import { Trash } from '@/components/emcn/icons/trash'
1717
import { createLogger } from '@/lib/logs/console/logger'
1818
import { cn } from '@/lib/utils'
19-
import { isLikelyReferenceSegment, SYSTEM_REFERENCE_PREFIXES, splitReferenceSegment } from '@/lib/workflows/references'
19+
import {
20+
isLikelyReferenceSegment,
21+
SYSTEM_REFERENCE_PREFIXES,
22+
splitReferenceSegment,
23+
} from '@/lib/workflows/references'
2024
import {
2125
checkEnvVarTrigger,
2226
EnvVarDropdown,

apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components/settings-modal/components/creator-profile/creator-profile.tsx renamed to apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components-new/settings-modal/components/components/creator-profile/creator-profile.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ import {
2828
import { useSession } from '@/lib/auth-client'
2929
import { createLogger } from '@/lib/logs/console/logger'
3030
import { cn } from '@/lib/utils'
31+
import { useProfilePictureUpload } from '@/app/workspace/[workspaceId]/w/components/sidebar/components-new/settings-modal/components/account/hooks/use-profile-picture-upload'
3132
import type { CreatorProfileDetails } from '@/types/creator-profile'
32-
import { useProfilePictureUpload } from '../account/hooks/use-profile-picture-upload'
3333

3434
const logger = createLogger('CreatorProfile')
3535

apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components-new/settings-modal/components/index.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
export { Account } from './account/account'
22
export { ApiKeys } from './api-keys/api-keys'
33
export { Copilot } from './copilot/copilot'
4-
export { CreatorProfile } from './creator-profile/creator-profile'
54
export { Credentials } from './credentials/credentials'
65
export { CustomTools } from './custom-tools/custom-tools'
76
export { EnvironmentVariables } from './environment/environment'

apps/sim/app/workspace/[workspaceId]/w/components/sidebar/components-new/settings-modal/settings-modal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import {
88
Account,
99
ApiKeys,
1010
Copilot,
11-
CreatorProfile,
1211
Credentials,
1312
CustomTools,
1413
EnvironmentVariables,
@@ -21,6 +20,7 @@ import {
2120
Subscription,
2221
TeamManagement,
2322
} from '@/app/workspace/[workspaceId]/w/components/sidebar/components-new/settings-modal/components'
23+
import { CreatorProfile } from '@/app/workspace/[workspaceId]/w/components/sidebar/components-new/settings-modal/components/components/creator-profile/creator-profile'
2424
import { useOrganizationStore } from '@/stores/organization'
2525
import { useGeneralStore } from '@/stores/settings/general/store'
2626

apps/sim/app/workspace/[workspaceId]/w/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
import { useEffect, useState } from 'react'
44
import { Loader2 } from 'lucide-react'
55
import { useParams, useRouter } from 'next/navigation'
6-
import { useWorkflowRegistry } from '@/stores/workflows/registry/store'
76
import { createLogger } from '@/lib/logs/console/logger'
7+
import { useWorkflowRegistry } from '@/stores/workflows/registry/store'
88

99
const logger = createLogger('WorkflowsPage')
1010

0 commit comments

Comments
 (0)