Skip to content

chore(deps): upgrade Apollo Client 3→4 (#9376) - #9544

Open
mikeallisonJS wants to merge 2 commits into
mainfrom
ma-9376-apollo-client-4
Open

chore(deps): upgrade Apollo Client 3→4 (#9376)#9544
mikeallisonJS wants to merge 2 commits into
mainfrom
ma-9376-apollo-client-4

Conversation

@mikeallisonJS

Copy link
Copy Markdown
Collaborator

Delivers the @apollo/client half of the GraphQL core family from the upgrade roadmap in #9376. Twelfth roadmap family to land, after ESLint (#9514), MUI (#9445), Vitest (#9484), Nx (#9415) and the rest.

graphql 16 → 17 is blocked, not skipped

The roadmap states the family as "graphql (16 → 17) and @apollo/client (3 → 4, major client rewrite)". Only the client half is possible today — the federation stack caps graphql at 16:

Package Latest graphql peer
@apollo/subgraph 2.14.4 ^16.5.0
@apollo/server 5.5.1 ^16.11.0
@graphql-hive/gateway 2.11.2 ^15.9.0 || ^16.9.0
@apollo/client 4.2.12 ^16.0.0 || ^17.0.0 ← the only one ready

So graphql stays on 16 and the 16→17 bump waits on those three moving. Worth folding back into the issue.

One roadmap line resolves as a non-finding: "chase the stray transitive graphql@4.8.0 resolution surfaced in the lockfile". The only 4.8.0 in the lockfile is @octokit/graphql@4.8.0 — an unrelated package, not a stray graphql resolution.

What moved

Package From To
@apollo/client 3.13.6 4.2.12
@apollo/client-integration-nextjs 0.12 0.14 (peers @apollo/client@^4)
rxjs 7.8.2 (new required peer; v4 replaced zen-observable)

Removed: @adobe/apollo-link-mutation-queue, apollo-link-debounce, zen-observable-ts — see below.

Codemod, then the parts it can't do

@apollo/client-codemod-migrate-3-to-4 handled the mechanical sweep across ~1,100 files: entry points (@apollo/client/react, @apollo/client/testing/react, @apollo/client/link/*), types moved into namespaces (ApolloLink.Result, useQuery.Options, MockLink.MockedResponse), link creators → classes, and the ApolloClient constructor reshuffle. Apollo's own docs say it gets you ~90% of the way; the remainder was diagnosed case by case.

Error handling — ApolloError is gone

GraphQL errors now arrive as CombinedGraphQLErrors; everything else is passed through unwrapped. The interesting part was error.networkError, which had no obvious replacement. LinkError.is() is the exact one: Apollo registers errors in registerLinkError from a catchError on the raw link observable, before CombinedGraphQLErrors is constructed downstream — so it means precisely "AC3 would have set networkError". Verified against the v4 source rather than inferred, which is why the snackbar branches keep their original meaning instead of collapsing into "any error".

Removed hook options

useQuery / useLazyQuery lost onCompleted and onError outright. Each site now reads the result instead. Two shared hooks keep their public contract by mirroring the callbacks internally (useJourneyAnalyticsQuery, useJourneyAiTranslateSubscription) so their callers were untouched.

useLazyQuery also lost hook-level variables, and executing one outside an event handler now throws. Lazy queries that were fired from an effect (AccessDialog, LocalDetails) became useQuery + skipToken — which is what Apollo's guide recommends, and drops a render-cycle round trip.

Three behaviour changes that only surface at runtime

Found by running the suites, not by reading the diff:

  • Subscriptions deliver errors through next, then complete. onComplete now fires after a failure, where v3 terminated. Callers read onComplete as "translation succeeded" and were switching teams on error. Gated once in the shared subscription hook rather than at six call sites.
  • Mutate promises reject even when onError is supplied. v3 resolved. Three await mutate({ onError }) call sites were leaking unhandled rejections.
  • MockLink gained a random 20–50 ms delay. The suite was written against v3's immediate responses; pinned back to { delay: 0 } in the ten test setups, as the migration guide suggests.

Two links had to be vendored

Both are incompatible with v4 in ways no version bump fixes, so they are ported in-repo under apps/journeys-admin/src/libs/apolloClient/ with behaviour unchanged:

  • @adobe/apollo-link-mutation-queue returns zen-observable instances. v4's QueryManager calls .pipe() on link results, which zen-observable does not have.
  • apollo-link-debounce ships an ES5 build that subclasses ApolloLink via a _super.call(this) shim. v4's ApolloLink is a real class, so it throws "Class constructor ApolloLink cannot be invoked without 'new'" the moment the link is constructed.

Both are now covered by specs (there were none before — the debounce link was only exercised indirectly through editor specs). Each spec was checked against a deliberately broken implementation to confirm it fails.

zen-observable-ts went with them; nothing imported it once the Adobe link was gone.

Typing fallout

  • ApolloCache<T> lost its generic — dropped at 10 sites.
  • ApolloCache.extract() now returns unknown; cast where the result is written into page props. In useBlockDeleteCommand this had been masking a real gap — the editor's step blocks carry no x/y, but blockRestore's response type requires them, so the optimistic response now reads the coordinates back off the cache.
  • v4 derives a result's data states from the options handed to a hook. Wrapper hooks that passed a wide useQuery.Options were leaving returnPartialData unresolved, which put partial in the union and handed every caller DeepPartial data. Their TStates are now narrowed, so consumers keep complete data.
  • Server-side client.query types data as optional under the default error policy. Call sites with inferred generics state errorPolicy: 'none' (which is what they already relied on); the rest narrow explicitly.

Sharper variable typing in arclight surfaced two genuine latent bugs: a select variable the query never declared, and four c.req.param() values passed as required ID! while typed string | undefined.

Verification

  • Type-check: 35/35 projects clean.
  • Tests green — journeys-admin 3,768, journeys-ui 1,474, api-journeys 1,114, api-media 779, resources 606, videos-admin 466, plus the rest. Zero unhandled rejections, which nx test fails on even when vitest run passes.
  • pnpm install --frozen-lockfile verified.

mikeallisonJS and others added 2 commits August 25, 2026 01:12
Takes the client half of the GraphQL-core family on #9376's upgrade
roadmap. `graphql` stays on 16: the federation stack caps it there
(`@apollo/subgraph` peers `^16.5.0`, `@apollo/server` `^16.11.0`,
`@graphql-hive/gateway` `^15.9.0 || ^16.9.0`), so 16→17 is blocked until
those move.

Apollo's official codemod handled the mechanical part — entry points
(`@apollo/client/react`, `@apollo/client/testing/react`), namespaced
types, class-based links and the `ApolloClient` constructor options. The
rest was done by hand:

- Error handling: `ApolloError` is gone. GraphQL errors now arrive as
  `CombinedGraphQLErrors`, and `LinkError.is()` replaces the old
  `networkError` check for transport failures.
- Removed hook options: `useQuery`/`useLazyQuery` lost `onCompleted` and
  `onError`; those call sites now read the result. Lazy queries that were
  executed from an effect became `useQuery` + `skipToken`, and
  `useLazyQuery` variables moved to the execute function.
- Typing: dropped the removed `ApolloCache<T>` generic, narrowed wrapper
  hooks' `TStates` so consumers don't see partial data, and guarded the
  now-optional `data` on server-side `client.query` calls.

Two links had to be vendored. `@adobe/apollo-link-mutation-queue` returns
zen-observables, which v4 pipes through rxjs operators; `apollo-link-debounce`
ships an ES5 build whose `_super.call(this)` shim can't extend v4's real
`ApolloLink` class. Both are ported in-repo with behaviour unchanged, and
the packages (plus the now-unused `zen-observable-ts`) are dropped.

Test setups pin `MockLink.defaultOptions = { delay: 0 }` to keep v3's
immediate mock responses; specs that mocked hooks off `@apollo/client`
now mock `@apollo/client/react`.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
- Regenerate the lockfile. The three dropped packages were removed from
  package.json after the last install, so their `importers` entries
  lingered and `pnpm install --frozen-lockfile` would have failed.
- Cover both vendored links. `MutationQueueLink` had no test at all;
  `DebounceLink` was only exercised indirectly through editor specs.
  Both specs fail against a deliberately broken implementation.
- Give `useUserInvitesLazyQuery` a `useUserInvitesQuery` sibling so
  AccessDialog reads invites through `src/libs/` rather than importing
  the raw document, per the app's convention guide.
- Refresh apps/journeys-admin/AGENTS.md: the Apollo entry-point map and
  the note that the debounce and mutation-queue links now live in-repo.
- Explain why useCustomDomainsQuery lists its options rather than taking
  `useQuery.Options` — a wide options type puts `partial` in the result's
  data states and hands callers DeepPartial data.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
@coderabbitai

coderabbitai Bot commented Aug 25, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Too many files!

This PR contains 1124 files, which is 1024 over the limit of 100.

To get a review, reduce the PR to 100 files or fewer by splitting it into smaller PRs or changing its base branch.

Upgrade to a paid plan to raise the limit.

Usage-priced reviews support at most 300 files.

⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro Plus

Run ID: 9a1f2ca8-f6c7-4975-a61b-9d31b8b65b0a

📥 Commits

Reviewing files that changed from the base of the PR and between d49e159 and 37ddf6d.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (1124)
  • apis/api-journeys/src/schema/block/video/service.spec.ts
  • apis/api-journeys/src/schema/block/video/service.ts
  • apis/api-journeys/src/schema/customDomain/customDomain.service.ts
  • apis/api-journeys/src/schema/customDomain/service.ts
  • apis/api-journeys/src/schema/journey/simple/updateSimpleJourney.ts
  • apis/api-journeys/src/schema/templateGalleryPage/media/muxValidate.spec.ts
  • apis/api-journeys/src/schema/templateGalleryPage/media/muxValidate.ts
  • apis/api-journeys/src/workers/emailEvents/service/service.spec.ts
  • apis/api-journeys/src/workers/emailEvents/service/service.ts
  • apis/api-journeys/src/workers/plausible/service.ts
  • apis/api-journeys/src/workers/shortlinkUpdater/service/service.ts
  • apis/api-media/src/lib/algolia/languages/getLanguages.ts
  • apis/api-media/src/schema/videoVariantUpload/service.ts
  • apis/api-media/src/schema/youtube/youtube.spec.ts
  • apis/api-media/src/schema/youtube/youtube.ts
  • apps/arclight/setupTests.ts
  • apps/arclight/src/app/[...route]/_dh/index.ts
  • apps/arclight/src/app/[...route]/_dl/index.ts
  • apps/arclight/src/app/[...route]/_hls/index.ts
  • apps/arclight/src/app/[keyword]/route.ts
  • apps/arclight/src/app/v2/[...route]/_media-component-links/[mediaComponentId]/index.ts
  • apps/arclight/src/app/v2/[...route]/_media-component-links/index.ts
  • apps/arclight/src/app/v2/[...route]/_media-components/[mediaComponentId]/index.ts
  • apps/arclight/src/app/v2/[...route]/_media-countries/[countryId]/index.ts
  • apps/arclight/src/app/v2/[...route]/_media-countries/index.ts
  • apps/arclight/src/app/v2/[...route]/_media-country-links/index.ts
  • apps/arclight/src/app/v2/[...route]/_media-languages/[languageId]/index.ts
  • apps/arclight/src/app/v2/[...route]/_media-languages/index.ts
  • apps/arclight/src/app/v2/[...route]/_taxonomies/[category]/index.ts
  • apps/arclight/src/app/v2/[...route]/_taxonomies/index.ts
  • apps/arclight/src/app/videoPlayerUrl/page.tsx
  • apps/arclight/src/lib/apolloClient/apolloClient.ts
  • apps/journeys-admin/AGENTS.md
  • apps/journeys-admin/pages/_app.tsx
  • apps/journeys-admin/pages/email-preferences/[email].tsx
  • apps/journeys-admin/pages/index.tsx
  • apps/journeys-admin/pages/journeys/[journeyId].tsx
  • apps/journeys-admin/pages/journeys/[journeyId]/quick.tsx
  • apps/journeys-admin/pages/journeys/[journeyId]/reports.tsx
  • apps/journeys-admin/pages/journeys/[journeyId]/reports/visitors.tsx
  • apps/journeys-admin/pages/publisher/[journeyId].tsx
  • apps/journeys-admin/pages/publisher/index.tsx
  • apps/journeys-admin/pages/teams/new.tsx
  • apps/journeys-admin/pages/templates/[journeyId].tsx
  • apps/journeys-admin/pages/templates/[journeyId]/customize.tsx
  • apps/journeys-admin/pages/templates/[journeyId]/quick.tsx
  • apps/journeys-admin/pages/templates/index.tsx
  • apps/journeys-admin/pages/users/terms-and-conditions.tsx
  • apps/journeys-admin/pages/users/verify.tsx
  • apps/journeys-admin/setupTests.tsx
  • apps/journeys-admin/src/components/AccessAvatars/AccessAvatars.spec.tsx
  • apps/journeys-admin/src/components/AccessAvatars/AccessAvatars.stories.tsx
  • apps/journeys-admin/src/components/AccessDenied/AccessDenied.spec.tsx
  • apps/journeys-admin/src/components/AccessDenied/AccessDenied.stories.tsx
  • apps/journeys-admin/src/components/AccessDenied/AccessDenied.tsx
  • apps/journeys-admin/src/components/AccessDialog/AccessDialog.spec.tsx
  • apps/journeys-admin/src/components/AccessDialog/AccessDialog.stories.tsx
  • apps/journeys-admin/src/components/AccessDialog/AccessDialog.tsx
  • apps/journeys-admin/src/components/AccessDialog/AddUserSection/AddUserSection.spec.tsx
  • apps/journeys-admin/src/components/AccessDialog/AddUserSection/AddUserSection.stories.tsx
  • apps/journeys-admin/src/components/AccessDialog/AddUserSection/EmailInviteForm/EmailInviteForm.spec.tsx
  • apps/journeys-admin/src/components/AccessDialog/AddUserSection/EmailInviteForm/EmailInviteForm.stories.tsx
  • apps/journeys-admin/src/components/AccessDialog/AddUserSection/EmailInviteForm/EmailInviteForm.tsx
  • apps/journeys-admin/src/components/AccessDialog/NotificationSwitch/NotificationSwitch.spec.tsx
  • apps/journeys-admin/src/components/AccessDialog/NotificationSwitch/NotificationSwitch.tsx
  • apps/journeys-admin/src/components/AccessDialog/UserList/UserList.spec.tsx
  • apps/journeys-admin/src/components/AccessDialog/UserList/UserListItem/ApproveUser/ApproveUser.spec.tsx
  • apps/journeys-admin/src/components/AccessDialog/UserList/UserListItem/ApproveUser/ApproveUser.tsx
  • apps/journeys-admin/src/components/AccessDialog/UserList/UserListItem/PromoteUser/PromoteUser.spec.tsx
  • apps/journeys-admin/src/components/AccessDialog/UserList/UserListItem/PromoteUser/PromoteUser.tsx
  • apps/journeys-admin/src/components/AccessDialog/UserList/UserListItem/RemoveUser/RemoveUser.spec.tsx
  • apps/journeys-admin/src/components/AccessDialog/UserList/UserListItem/RemoveUser/RemoveUser.tsx
  • apps/journeys-admin/src/components/AccessDialog/UserList/UserListItem/UserListItem.spec.tsx
  • apps/journeys-admin/src/components/DynamicPowerBiReport/DyanmicPowerBiReport.spec.tsx
  • apps/journeys-admin/src/components/DynamicPowerBiReport/Report/Report.spec.tsx
  • apps/journeys-admin/src/components/DynamicPowerBiReport/Report/Report.stories.tsx
  • apps/journeys-admin/src/components/DynamicPowerBiReport/Report/Report.tsx
  • apps/journeys-admin/src/components/Editor/Editor.spec.tsx
  • apps/journeys-admin/src/components/Editor/Editor.stories.tsx
  • apps/journeys-admin/src/components/Editor/LayeredView/LayeredView.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/Canvas.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/Canvas.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/CardSlugEdit/CardSlugEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/CardSlugEdit/CardSlugEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/DragDropWrapper/DragDropWrapper.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/DragItemWrapper/DragItemWrapper.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/ButtonEdit/ButtonEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/ButtonEdit/ButtonEdit.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/ButtonEdit/ButtonEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/InlineEditWrapper.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/MultiselectEdit/MultiselectEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/MultiselectEdit/MultiselectEdit.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/MultiselectEdit/MultiselectEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/MultiselectOptionEdit/MultiselectOptionEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/MultiselectOptionEdit/MultiselectOptionEdit.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/MultiselectOptionEdit/MultiselectOptionEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/RadioOptionEdit/RadioOptionEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/RadioOptionEdit/RadioOptionEdit.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/RadioOptionEdit/RadioOptionEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/RadioQuestionEdit/RadioQuestionEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/RadioQuestionEdit/RadioQuestionEdit.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/RadioQuestionEdit/RadioQuestionEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/RadioQuestionEdit/utils/handleCreateRadioOption/handleCreateRadioOption.ts
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/SignUpEdit/SignUpEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/SignUpEdit/SignUpEdit.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/SignUpEdit/SignUpEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/TypographyEdit/TypographyEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/TypographyEdit/TypographyEdit.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/InlineEditWrapper/TypographyEdit/TypographyEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/QuickControls/DeleteBlock/DeleteBlock.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/QuickControls/DuplicateBlock/DuplicateBlock.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/QuickControls/DuplicateBlock/DuplicateBlock.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/QuickControls/MoveBlock/MoveBlock.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/QuickControls/MoveBlock/MoveBlock.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/QuickControls/QuickControls.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/QuickControls/QuickControls.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Canvas/SelectableWrapper/SelectableWrapper.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Content.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Social/Message/Message.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Content/Social/SocialPreview.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/AnalyticsOverlaySwitch/AnalyticsOverlaySwitch.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/Controls/Controls.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/JourneyFlow.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/JourneyFlow.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/JourneyFlow.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/NewStepButton/NewStepButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/NewStepButton/NewStepButton.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/edges/BaseEdge/BaseEdge.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/edges/CustomEdge/CustomEdge.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/edges/CustomEdge/CustomEdge.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/edges/ReferrerEdge/ReferrerEdge.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/edges/StartEdge/StartEdge.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStep/useCreateStep.mock.ts
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStep/useCreateStep.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromAction/useCreateStepFromAction.mock.ts
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromAction/useCreateStepFromAction.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromAction/useCreateStepFromAction.ts
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromSocialPreview/useCreateStepFromSocialPreview.mock.ts
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromSocialPreview/useCreateStepFromSocialPreview.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromSocialPreview/useCreateStepFromSocialPreview.ts
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromStep/useCreateStepFromStep.mock.ts
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromStep/useCreateStepFromStep.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useCreateStepFromStep/useCreateStepFromStep.ts
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useDeleteEdge/useDeleteEdge.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useDeleteOnKeyPress/useDeleteOnKeyPress.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/libs/useUpdateEdge/useUpdateEdge.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/BaseNode/BaseNode.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/ChatNode/ChatNode.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/LinkNode/LinkNode.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/ReferrerNode/ReferrerNode.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/SocialPreviewNode/SocialPreviewNode.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/SocialPreviewNode/SocialPreviewNode.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/StepBlockNode/ActionButton/ActionButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/StepBlockNode/StepBlockNode.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/StepBlockNode/StepBlockNode.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/StepBlockNode/StepBlockNodeCard/StepBlockNodeCard.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/StepBlockNode/StepBlockNodeMenu/DuplicateStep/DuplicateStep.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/StepBlockNode/StepBlockNodeMenu/DuplicateStep/DuplicateStep.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/StepBlockNode/StepBlockNodeMenu/StepBlockNodeMenu.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/nodes/StepBlockNode/StepBlockNodeMenu/StepBlockNodeMenu.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/JourneyFlow/utils/useStepAndBlockSelection/useStepAndBlockSelection.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/AddBlock.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewButtonButton/NewButtonButton.mock.ts
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewButtonButton/NewButtonButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewButtonButton/NewButtonButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewImageButton/NewImageButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewImageButton/NewImageButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewMultiselectButton/NewMultiselectButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewMultiselectButton/NewMultiselectButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewRadioQuestionButton/NewRadioQuestionButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewRadioQuestionButton/NewRadioQuestionButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewSignUpButton/NewSignUpButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewSignUpButton/NewSignUpButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewSpacerButton/NewSpacerButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewSpacerButton/NewSpacerButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewTextResponseButton/NewTextResponseButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewTextResponseButton/NewTextResponseButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewTypographyButton/NewTypographyButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewTypographyButton/NewTypographyButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewVideoButton/NewVideoButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/AddBlock/NewVideoButton/NewVideoButton.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/CanvasDetails.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/Chat.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/Chat.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/Chat.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/ChatOption/ChatOption.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/ChatOption/ChatOption.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/ChatOption/Details/Details.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/ChatOption/Details/Details.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/ChatOption/Summary/Summary.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Chat/ChatOption/Summary/Summary.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/DisplayTitle/DisplayTitle.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/DisplayTitle/DisplayTitle.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/Host.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/Host.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/Host.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostForm/HostAvatarsButton/HostAvatarsButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostForm/HostAvatarsButton/HostAvatarsButton.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostForm/HostForm.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostForm/HostForm.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostForm/HostForm.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostInfo/HostInfo.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostInfo/HostInfo.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostList/HostList.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostList/HostList.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostSelection/HostSelection.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Host/HostSelection/HostSelection.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/JourneyAppearance.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Logo/Logo.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Logo/Logo.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Logo/Logo.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Menu/Menu.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Menu/Menu.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Menu/MenuActionButton/MenuActionButton.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Menu/MenuActionButton/MenuActionButton.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Menu/MenuIconSelect/MenuIconSelect.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Menu/MenuIconSelect/MenuIconSelect.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Reactions/ReactionOption/ReactionOption.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Reactions/Reactions.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/JourneyAppearance/Reactions/Reactions.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/Properties.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Alignment/Alignment.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Alignment/Alignment.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Button.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Color/Color.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Color/Color.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Color/Color.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Size/Size.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Size/Size.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Size/Size.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Variant/Variant.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Variant/Variant.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Button/Variant/Variant.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundColor/BackgroundColor.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundColor/BackgroundColor.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundColor/BackgroundColor.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundMedia/BackgroundMedia.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundMedia/BackgroundMedia.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundMedia/Image/BackgroundMediaImage.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundMedia/Image/BackgroundMediaImage.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundMedia/Video/BackgroundMediaVideo.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/BackgroundMedia/Video/BackgroundMediaVideo.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/Card.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/CardLayout/CardLayout.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/CardLayout/CardLayout.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/CardLayout/CardLayout.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/CardStyling/CardStyling.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/CardStyling/CardStyling.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/CardStyling/CardStyling.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/ChatAssistant/ChatAssistant.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Card/ChatAssistant/ChatAssistant.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Image/Image.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Image/Options/ImageOptions.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Image/Options/ImageOptions.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Image/Options/ImageOptions.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Multiselect/Multiselect.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Multiselect/Multiselect.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Multiselect/Multiselect.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/MultiselectOption/MultiselectOption.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/RadioOption/RadioOption.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/RadioOption/RadioOptionImage/RadioOptionImage.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/RadioOption/RadioOptionImage/RadioOptionImage.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/RadioQuestion/RadioQuestion.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/RadioQuestion/RadioQuestion.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/RadioQuestion/RadioQuestion.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/SignUp/SignUp.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Spacer/Spacer.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Spacer/Spacing/Spacing.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Spacer/Spacing/Spacing.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Spacer/Spacing/Spacing.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponse.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/GrowthSpacesIntegrations/App/App.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/GrowthSpacesIntegrations/App/App.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/GrowthSpacesIntegrations/GrowthSpacesIntegrations.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/GrowthSpacesIntegrations/Route/Route.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/GrowthSpacesIntegrations/Route/Route.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Hint/Hint.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Hint/Hint.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Label/Label.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Label/Label.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/MinRows/MinRows.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/MinRows/MinRows.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Placeholder/Placeholder.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Placeholder/Placeholder.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Required/Required.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Required/Required.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/TextResponseFields.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/TextResponseFields.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Type/Type.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/TextResponse/TextResponseFields/Type/Type.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Align/Align.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Align/Align.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Align/Align.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Color/Color.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Color/Color.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Color/Color.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/ThemeBuilderDialog/ThemeBuilderDialog.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/ThemeBuilderDialog/ThemeBuilderDialog.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Typography.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Variant/Variant.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Variant/Variant.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Typography/Variant/Variant.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Video/Options/VideoOptions.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Video/Options/VideoOptions.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Video/Options/VideoOptions.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/blocks/Video/Video.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/Action.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/Action.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/ChatAction/ChatAction.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/ChatAction/ChatAction.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/EmailAction/EmailAction.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/EmailAction/EmailAction.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/LinkAction/LinkAction.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/LinkAction/LinkAction.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/NavigateToBlockAction/NavigateToBlockAction.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/NavigateToBlockAction/NavigateToBlockAction.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Action/PhoneAction/PhoneAction.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/BlockCustomizationToggle/BlockCustomizationToggle.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/BlockCustomizationToggle/BlockCustomizationToggle.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/EventLabel/EventLabel.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/EventLabel/EventLabel.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Icon/Color/Color.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Icon/Color/Color.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Icon/Icon.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Icon/Icon.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/Icon/Icon.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/ToggleOption/ToggleOption.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/Properties/controls/ToggleOption/ToggleOption.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/WebsiteToggle/WebsiteToggle.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/CanvasDetails/WebsiteToggle/WebsiteToggle.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/CardTemplates.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/CardTemplates.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardCta/CardCta.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardCta/CardCta.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardForm/CardForm.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardForm/CardForm.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardIntro/CardIntro.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardIntro/CardIntro.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardPoll/CardPoll.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardPoll/CardPoll.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardQuote/CardQuote.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardQuote/CardQuote.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardVideo/CardVideo.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/CardTemplates/Layouts/CardVideo/CardVideo.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/AIGallery/AIGallery.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/AIGallery/AIGallery.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/AIGallery/AIGallery.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/CustomImage/CustomImage.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/CustomImage/CustomImage.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/CustomImage/ImageUpload/ImageUpload.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/CustomImage/ImageUpload/ImageUpload.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/CustomImage/ImageUpload/ImageUpload.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/ImageBlockEditor.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/ImageBlockEditor.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/MediaLibrary/MediaLibrary.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/MediaLibrary/MediaLibrary.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/MediaLibrary/prependCloudflareImage.ts
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/UnsplashGallery/UnsplashGallery.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/UnsplashGallery/UnsplashGallery.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/UnsplashGallery/UnsplashGallery.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/UnsplashGallery/UnsplashList/UnsplashList.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/UnsplashGallery/UnsplashList/UnsplashList.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageBlockEditor/UnsplashGallery/data.ts
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageEdit/ImageEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageLibrary/ImageLibrary.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageLibrary/ImageLibrary.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/ImageSource/ImageSource.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Settings/MuxSubtitles/MuxSubtitleSwitch.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Settings/MuxSubtitles/MuxSubtitleSwitch.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Settings/Poster/Library/VideoBlockEditorSettingsPosterLibrary.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Settings/Poster/Library/VideoBlockEditorSettingsPosterLibrary.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Settings/Poster/VideoBlockEditorSettingsPoster.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Settings/VideoBlockEditorSettings.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Source/Source.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Source/SourceFromLocal/SourceFromLocal.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/Source/SourceFromLocal/SourceFromLocal.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/VideoBlockEditor.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoBlockEditor/VideoBlockEditor.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoDetails/VideoDetails.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoDetails/VideoDetails.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoDetails/VideoDetails.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromLocal/LocalDetails/LocalDetails.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromLocal/LocalDetails/LocalDetails.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromLocal/LocalDetails/LocalDetails.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromMux/AddByFile/AddByFile.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromMux/AddByFile/data.ts
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromMux/MyMuxVideos/MyMuxVideos.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromMux/MyMuxVideos/MyMuxVideos.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromMux/VideoFromMux.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromMux/VideoFromMux.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromYouTube/VideoFromYouTube.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromYouTube/YouTubeDetails/YouTubeDetails.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoFromYouTube/YouTubeDetails/YouTubeDetails.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoLibrary.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoLibrary.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoList/VideoList.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoList/VideoList.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoList/VideoListItem/VideoListItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Drawer/VideoLibrary/VideoList/VideoListItem/VideoListItem.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/GoalDetails/ActionCards/ActionCards.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/GoalDetails/ActionEditor/ActionEditor.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/GoalDetails/ActionEditor/ActionEditor.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/GoalDetails/GoalDetails.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/GoalDetails/GoalDetails.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/Settings.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/SocialDetails/DescriptionEdit/DescriptionEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/SocialDetails/DescriptionEdit/DescriptionEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/SocialDetails/SocialDetails.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/SocialDetails/SocialDetails.stories.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/SocialDetails/TitleEdit/TitleEdit.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Settings/SocialDetails/TitleEdit/TitleEdit.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Slider.spec.tsx
  • apps/journeys-admin/src/components/Editor/Slider/Slider.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/AccessItem/AccessItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/AnalyticsItem/AnalyticsItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/AnalyticsItem/AnalyticsItem.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/AnalyticsItem/AnalyticsItem.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/CopyLinkItem/CopyLinkItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/CreateTemplateItem/CreateTemplateItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/CreateTemplateItem/CreateTemplateItem.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/DetailsItem/DetailsItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/Items.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/PreviewItem/PreviewItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/PreviewItem/PreviewItem.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ResponsesItem/ResponsesItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ResponsesItem/ResponsesItem.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ResponsesItem/ResponsesItem.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/EmbedJourneyDialog/EmbedJourneyDialog.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/EmbedJourneyDialog/EmbedJourneyDialog.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/QrCodeDialog/QrCodeDialog.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/QrCodeDialog/QrCodeDialog.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/QrCodeDialog/QrCodeDialog.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/QrCodeDialog/ScanCount/ScanCount.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/QrCodeDialog/ScanCount/ScanCount.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/QrCodeDialog/ScanCount/ScanCount.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/ShareItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/ShareItem.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/SlugDialog/SlugDialog.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/SlugDialog/SlugDialog.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/ShareItem/SlugDialog/SlugDialog.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/StrategyItem/StrategyItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/StrategyItem/StrategyItem.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/TemplateSettingsItem/TemplateSettingsDialog/AboutTabPanel/AboutTabPanel.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/TemplateSettingsItem/TemplateSettingsDialog/AboutTabPanel/CustomizeTemplate/CustomizeTemplate.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/TemplateSettingsItem/TemplateSettingsDialog/CategoriesTabPanel/CategoriesTabPanel.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/TemplateSettingsItem/TemplateSettingsDialog/MetadataTabPanel/MetadataTabPanel.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/TemplateSettingsItem/TemplateSettingsDialog/TemplateSettingsDialog.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/TemplateSettingsItem/TemplateSettingsDialog/TemplateSettingsDialog.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/TemplateSettingsItem/TemplateSettingsDialog/TemplateSettingsDialog.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Items/TemplateSettingsItem/TemplateSettingsItem.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/JourneyDetails/JourneyDetails.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/JourneyDetails/JourneyDetailsDialog/JourneyDetailsDialog.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/JourneyDetails/JourneyDetailsDialog/JourneyDetailsDialog.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/JourneyDetails/JourneyDetailsDialog/JourneyDetailsDialog.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/JourneyDetails/LocalTemplateDetailsDialog/LocalTemplateDetailsDialog.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/JourneyDetails/LocalTemplateDetailsDialog/LocalTemplateDetailsDialog.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Menu/Menu.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Menu/Menu.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Menu/Menu.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Toolbar.spec.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Toolbar.stories.tsx
  • apps/journeys-admin/src/components/Editor/Toolbar/Toolbar.tsx
  • apps/journeys-admin/src/components/Editor/utils/useActionCommand/useActionCommand.spec.tsx
  • apps/journeys-admin/src/components/Editor/utils/useBlockCreateCommand/useBlockCreateCommand.spec.tsx
  • apps/journeys-admin/src/components/Editor/utils/useBlockDeleteCommand/useBlockDeleteCommand.spec.tsx
  • apps/journeys-admin/src/components/Editor/utils/useBlockDeleteCommand/useBlockDeleteCommand.tsx
  • apps/journeys-admin/src/components/Editor/utils/useBlockDuplicateCommand/useBlockDuplicateCommand.spec.tsx
  • apps/journeys-admin/src/components/EmailVerification/EmailVerification.tsx
  • apps/journeys-admin/src/components/Google/GoogleCreateIntegration/GoogleCreateIntegration.spec.tsx
  • apps/journeys-admin/src/components/Google/GoogleCreateIntegration/libs/useIntegrationGoogleCreate/useIntegrationGoogleCreate.spec.tsx
  • apps/journeys-admin/src/components/Google/GoogleCreateIntegration/libs/useIntegrationGoogleCreate/useIntegrationGoogleCreate.ts
  • apps/journeys-admin/src/components/Google/GoogleIntegrationDetails/GoogleIntegrationDeleteSyncDialog/GoogleIntegrationDeleteSyncDialog.spec.tsx
  • apps/journeys-admin/src/components/Google/GoogleIntegrationDetails/GoogleIntegrationDeleteSyncDialog/GoogleIntegrationDeleteSyncDialog.tsx
  • apps/journeys-admin/src/components/Google/GoogleIntegrationDetails/GoogleIntegrationDetails.spec.tsx
  • apps/journeys-admin/src/components/Google/GoogleIntegrationDetails/GoogleIntegrationDetails.tsx
  • apps/journeys-admin/src/components/Google/GoogleIntegrationDetails/GoogleIntegrationRemoveDialog/GoogleIntegrationRemoveDialog.spec.tsx
  • apps/journeys-admin/src/components/Google/GoogleIntegrationDetails/GoogleIntegrationRemoveDialog/GoogleIntegrationRemoveDialog.tsx
  • apps/journeys-admin/src/components/GrowthSpaces/GrowthSpacesCreateIntegration/GrowthSpacesCreateIntegration.spec.tsx
  • apps/journeys-admin/src/components/GrowthSpaces/GrowthSpacesCreateIntegration/GrowthSpacesCreateIntegration.tsx
  • apps/journeys-admin/src/components/GrowthSpaces/GrowthSpacesIntegrationDetails/GrowthSpacesIntegrationDetails.spec.tsx
  • apps/journeys-admin/src/components/GrowthSpaces/GrowthSpacesIntegrationDetails/GrowthSpacesIntegrationDetails.tsx
  • apps/journeys-admin/src/components/JourneyList/ActiveJourneyList/ActiveJourneyList.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/ActiveJourneyList/ActiveJourneyList.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/ActiveJourneyList/ActiveJourneyList.tsx
  • apps/journeys-admin/src/components/JourneyList/ActiveJourneyList/ActivePriorityList/ActivePriorityList.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/ActiveJourneyList/ActivePriorityList/ActivePriorityList.tsx
  • apps/journeys-admin/src/components/JourneyList/ActiveJourneyList/AddJourneyButton/AddJourneyButton.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/AddJourneyFab/AddJourneyFab.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/ArchivedJourneyList/ArchivedJourneyList.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/ArchivedJourneyList/ArchivedJourneyList.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/ArchivedJourneyList/ArchivedJourneyList.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCard.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCard.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCard.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardInfo/JourneyCardInfo.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/DefaultMenu/ArchiveJourney/ArchiveJourney.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/DefaultMenu/ArchiveJourney/ArchiveJourney.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/DefaultMenu/DefaultMenu.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/DefaultMenu/DefaultMenu.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/DeleteJourneyDialog/DeleteJourneyDialog.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/DeleteJourneyDialog/DeleteJourneyDialog.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/DeleteJourneyDialog/DeleteJourneyDialog.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/DuplicateJourneyMenuItem/DuplicateJourneyMenuItem.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/JourneyCardMenu.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/JourneyCardMenu.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/JourneyCardMenu.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/RestoreJourneyDialog/RestoreJourneyDialog.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/RestoreJourneyDialog/RestoreJourneyDialog.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/RestoreJourneyDialog/RestoreJourneyDialog.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/TranslateJourneyDialog/TranslateJourneyDialog.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/TrashJourneyDialog/TrashJourneyDialog.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/TrashJourneyDialog/TrashJourneyDialog.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/TrashJourneyDialog/TrashJourneyDialog.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/JourneyCardMenu/TrashMenu/TrashMenu.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyCard/TemplateAggregateAnalytics/TemplateAggregateAnalytics.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyList.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyList.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyListContent/JourneyListContent.mocks.ts
  • apps/journeys-admin/src/components/JourneyList/JourneyListContent/JourneyListContent.testUtils.tsx
  • apps/journeys-admin/src/components/JourneyList/JourneyListContent/JourneyListContent.tsx
  • apps/journeys-admin/src/components/JourneyList/TrashedJourneyList/TrashedJourneyList.spec.tsx
  • apps/journeys-admin/src/components/JourneyList/TrashedJourneyList/TrashedJourneyList.stories.tsx
  • apps/journeys-admin/src/components/JourneyList/TrashedJourneyList/TrashedJourneyList.tsx
  • apps/journeys-admin/src/components/JourneyQuickSettings/JourneyQuickSettings.spec.tsx
  • apps/journeys-admin/src/components/JourneyQuickSettings/JourneyQuickSettingsChat/JourneyQuickSettingsChat.spec.tsx
  • apps/journeys-admin/src/components/JourneyVisitorsList/ExportEventsButton/ExportEventsButton.spec.tsx
  • apps/journeys-admin/src/components/JourneyVisitorsList/ExportEventsButton/ExportEventsButton.tsx
  • apps/journeys-admin/src/components/JourneyVisitorsList/FilterDrawer/ExportDialog/ExportDialog.spec.tsx
  • apps/journeys-admin/src/components/JourneyVisitorsList/FilterDrawer/FilterDrawer.spec.tsx
  • apps/journeys-admin/src/components/JourneyVisitorsList/FilterDrawer/FilterDrawer.stories.tsx
  • apps/journeys-admin/src/components/JourneyVisitorsList/FilterDrawer/FilterDrawer.tsx
  • apps/journeys-admin/src/components/JourneyVisitorsList/GoogleSheetsSyncDialog/GoogleSheetsSyncDialog.spec.tsx
  • apps/journeys-admin/src/components/JourneyVisitorsList/GoogleSheetsSyncDialog/GoogleSheetsSyncDialog.tsx
  • apps/journeys-admin/src/components/MuxVideoUploadProvider/MuxVideoUploadProvider.spec.tsx
  • apps/journeys-admin/src/components/MuxVideoUploadProvider/MuxVideoUploadProvider.tsx
  • apps/journeys-admin/src/components/OnboardingPageWrapper/OnboardingDrawer/OnboardingDrawer.spec.tsx
  • apps/journeys-admin/src/components/OnboardingPageWrapper/OnboardingDrawer/OnboardingLandingDrawer/OnboardingLandingDrawer.spec.tsx
  • apps/journeys-admin/src/components/OnboardingPageWrapper/OnboardingDrawer/OnboardingTemplateCard/OnboardingTemplateCard.spec.tsx
  • apps/journeys-admin/src/components/OnboardingPageWrapper/OnboardingPageWrapper.spec.tsx
  • apps/journeys-admin/src/components/OnboardingPanel/OnboardingList/OnboardingList.spec.tsx
  • apps/journeys-admin/src/components/OnboardingPanel/OnboardingList/OnboardingList.tsx
  • apps/journeys-admin/src/components/OnboardingPanel/OnboardingPanel.spec.tsx
  • apps/journeys-admin/src/components/OnboardingPanel/data.ts
  • apps/journeys-admin/src/components/PageWrapper/AppHeader/AppHeader.spec.tsx
  • apps/journeys-admin/src/components/PageWrapper/NavigationDrawer/NavigationDrawer.spec.tsx
  • apps/journeys-admin/src/components/PageWrapper/NavigationDrawer/NavigationDrawer.stories.tsx
  • apps/journeys-admin/src/components/PageWrapper/NavigationDrawer/UserNavigation/ImpersonateDialog/ImpersonateDialog.spec.tsx
  • apps/journeys-admin/src/components/PageWrapper/NavigationDrawer/UserNavigation/ImpersonateDialog/ImpersonateDialog.tsx
  • apps/journeys-admin/src/components/PageWrapper/NavigationDrawer/UserNavigation/UserMenu/UserMenu.spec.tsx
  • apps/journeys-admin/src/components/PageWrapper/NavigationDrawer/UserNavigation/UserMenu/UserMenu.tsx
  • apps/journeys-admin/src/components/PageWrapper/NavigationDrawer/UserNavigation/UserNavigation.spec.tsx
  • apps/journeys-admin/src/components/PageWrapper/NavigationDrawer/UserNavigation/UserNavigation.tsx
  • apps/journeys-admin/src/components/PageWrapper/PageWrapper.spec.tsx
  • apps/journeys-admin/src/components/PageWrapper/PageWrapper.stories.tsx
  • apps/journeys-admin/src/components/PlausibleEmbedDashboard/PlausibleEmbedDashboard.spec.tsx
  • apps/journeys-admin/src/components/PlausibleEmbedDashboard/PlausibleEmbedDashboard.stories.tsx
  • apps/journeys-admin/src/components/PlausibleEmbedDashboard/PlausibleEmbedDashboard.tsx
  • apps/journeys-admin/src/components/PublisherInvite/PublisherInvite.stories.tsx
  • apps/journeys-admin/src/components/SidePanelTitle/SidePanelTitle.spec.tsx
  • apps/journeys-admin/src/components/SignIn/EmailUsedPage/EmailUsedPage.spec.tsx
  • apps/journeys-admin/src/components/SignIn/HomePage/HomePage.spec.tsx
  • apps/journeys-admin/src/components/SignIn/RegisterPage/RegisterPage.spec.tsx
  • apps/journeys-admin/src/components/SignIn/RegisterPage/RegisterPage.tsx
  • apps/journeys-admin/src/components/SignIn/SignIn.spec.tsx
  • apps/journeys-admin/src/components/SignIn/SignIn.stories.tsx
  • apps/journeys-admin/src/components/SignIn/SignInServiceButton/SignInServiceButton.spec.tsx
  • apps/journeys-admin/src/components/SignIn/SignInServiceButton/SignInServiceButton.stories.tsx
  • apps/journeys-admin/src/components/SignIn/SignInServiceButton/SignInServiceButton.tsx
  • apps/journeys-admin/src/components/StatusTabPanel/StatusTabPanel.spec.tsx
  • apps/journeys-admin/src/components/StatusTabPanel/StatusTabPanel.stories.tsx
  • apps/journeys-admin/src/components/Team/BreadcrumbNavigation/BreadcrumbNavigation.spec.tsx
  • apps/journeys-admin/src/components/Team/CopyToTeamMenuItem/CopyToTeamMenuItem.spec.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/CustomDomainDialog.spec.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/CustomDomainDialog.stories.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/DNSConfigSection/DNSConfigSection.spec.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/DNSConfigSection/DNSConfigSection.stories.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/DNSConfigSection/DNSConfigSection.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/DefaultJourneyForm/DefaultJourneyForm.spec.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/DefaultJourneyForm/DefaultJourneyForm.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/DomainNameForm/DomainNameForm.spec.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/DomainNameForm/DomainNameForm.stories.tsx
  • apps/journeys-admin/src/components/Team/CustomDomainDialog/DomainNameForm/DomainNameForm.tsx
  • apps/journeys-admin/src/components/Team/TeamCreateDialog/TeamCreateDialog.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamCreateDialog/TeamCreateDialog.stories.tsx
  • apps/journeys-admin/src/components/Team/TeamCreateForm/TeamCreateForm.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamCreateForm/TeamCreateForm.tsx
  • apps/journeys-admin/src/components/Team/TeamIntegrations/TeamIntegrations.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/TeamManageDialog.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/TeamManageDialog.stories.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/TeamManageWrapper/TeamManageWrapper.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/UserTeamDeleteMenuItem/UserTeamDeleteMenuItem.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/UserTeamDeleteMenuItem/UserTeamDeleteMenuItem.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/UserTeamInviteList/UserTeamInviteListItem/UserTeamInviteListItem.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/UserTeamInviteRemoveMenuItem/UserTeamInviteRemoveMenuItem.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/UserTeamInviteRemoveMenuItem/UserTeamInviteRemoveMenuItem.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/UserTeamList/UserTeamList.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/UserTeamList/UserTeamListItem/UserTeamListItem.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamManageDialog/UserTeamList/UserTeamListItem/UserTeamListItem.tsx
  • apps/journeys-admin/src/components/Team/TeamMenu/TeamMenu.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamMenu/TeamMenu.stories.tsx
  • apps/journeys-admin/src/components/Team/TeamOnboarding/TeamOnboarding.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamOnboarding/TeamOnboarding.stories.tsx
  • apps/journeys-admin/src/components/Team/TeamOnboarding/TeamOnboarding.tsx
  • apps/journeys-admin/src/components/Team/TeamSelect/TeamSelect.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamSelect/TeamSelect.stories.tsx
  • apps/journeys-admin/src/components/Team/TeamSelect/TeamSelect.tsx
  • apps/journeys-admin/src/components/Team/TeamUpdateDialog/TeamUpdateDialog.spec.tsx
  • apps/journeys-admin/src/components/Team/TeamUpdateDialog/TeamUpdateDialog.stories.tsx
  • apps/journeys-admin/src/components/Team/TeamUpdateDialog/TeamUpdateDialog.tsx
  • apps/journeys-admin/src/components/Team/UserTeamInviteForm/UserTeamInviteForm.spec.tsx
  • apps/journeys-admin/src/components/Team/UserTeamInviteForm/UserTeamInviteForm.stories.tsx
  • apps/journeys-admin/src/components/Team/UserTeamInviteForm/UserTeamInviteForm.tsx
  • apps/journeys-admin/src/components/TemplateBreakdownAnalyticsDialog/TemplateBreakdownAnalyticsDialog.spec.tsx
  • apps/journeys-admin/src/components/TemplateBreakdownAnalyticsDialog/TemplateBreakdownAnalyticsDialog.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/DoneScreen/DoneScreen.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/DoneScreen/DoneScreen.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/LanguageScreen/JourneyCustomizeTeamSelect/JourneyCustomizeTeamSelect.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/LanguageScreen/LanguageScreen.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/LinksScreen/LinksScreen.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/LinksScreen/LinksScreen.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/MediaScreen/MediaScreen.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/MediaScreen/Sections/ImagesSection/ImageSectionItem.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/MediaScreen/Sections/ImagesSection/ImagesSection.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/MediaScreen/Sections/ImagesSection/ImagesSection.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/MediaScreen/Sections/LogoSection/LogoSection.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/MediaScreen/Sections/LogoSection/LogoSection.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/MediaScreen/Sections/VideosSection/VideosSection.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/SocialScreen/SocialScreen.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/SocialScreen/SocialScreenSocialImage/SocialScreenSocialImage.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/TextScreen/TextScreen.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/Screens/TextScreen/TextScreen.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/TemplateVideoUploadProvider/TemplateVideoUploadProvider.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/TemplateVideoUploadProvider/TemplateVideoUploadProvider.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/TemplateVideoUploadProvider/useMuxVideoProcessing.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/TemplateVideoUploadProvider/useMuxVideoProcessing.ts
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/TemplateVideoUploadProvider/useYouTubeVideoLinking.spec.tsx
  • apps/journeys-admin/src/components/TemplateCustomization/MultiStepForm/TemplateVideoUploadProvider/useYouTubeVideoLinking.ts
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CollectionDialog/CollectionPreviewPane/CollectionPreviewPane.spec.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CollectionDialog/MediaPreview/MediaPreview.spec.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CollectionDialog/MediaPreview/MediaPreview.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CollectionDialog/MediaSection/MuxUploadField/MuxUploadField.spec.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CollectionDialog/MediaSection/MuxUploadField/MuxUploadField.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CollectionDialog/useCollectionForm/mediaErrorMessage.ts
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CollectionDialog/useCollectionForm/useCollectionForm.spec.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CollectionDialog/useCollectionForm/useCollectionForm.ts
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CopyToCollectionDialog/CopyToCollectionDialog.spec.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CopyToCollectionMenuItem/CopyToCollectionMenuItem.spec.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/CopyToCollectionMenuItem/CopyToCollectionMenuItem.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/TemplateGalleryPageList.spec.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/TemplateGalleryPageList.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/useCollectionMutations/useCollectionMutations.spec.tsx
  • apps/journeys-admin/src/components/TemplateGalleryPageList/useDragEndHandler/useDragEndHandler.spec.tsx
  • apps/journeys-admin/src/components/TemplateList/ActiveTemplateList/ActiveTemplateList.spec.tsx
  • apps/journeys-admin/src/components/TemplateList/ActiveTemplateList/ActiveTemplateList.tsx
  • apps/journeys-admin/src/components/TemplateList/ArchivedTemplateList/ArchivedTemplateList.spec.tsx
  • apps/journeys-admin/src/components/TemplateList/ArchivedTemplateList/ArchivedTemplateList.tsx
  • apps/journeys-admin/src/components/TemplateList/TemplateList.spec.tsx
  • apps/journeys-admin/src/components/TemplateList/TrashedTemplateList/TrashedTemplateList.spec.tsx
  • apps/journeys-admin/src/components/TemplateList/TrashedTemplateList/TrashedTemplateList.tsx
  • apps/journeys-admin/src/components/TermsAndConditions/TermsAndConditions.spec.tsx
  • apps/journeys-admin/src/components/TermsAndConditions/TermsAndConditions.stories.tsx
  • apps/journeys-admin/src/components/TermsAndConditions/TermsAndConditions.tsx
  • apps/journeys-admin/src/components/UseTemplateDeepLink/UseTemplateDeepLink.spec.tsx
  • apps/journeys-admin/src/components/UserDelete/UserDelete.spec.tsx
  • apps/journeys-admin/src/components/UserDelete/UserDelete.tsx
  • apps/journeys-admin/src/components/VisitorInfo/DetailsForm/DetailsForm.spec.tsx
  • apps/journeys-admin/src/components/VisitorInfo/DetailsForm/DetailsForm.stories.tsx
  • apps/journeys-admin/src/components/VisitorInfo/DetailsForm/DetailsForm.tsx
  • apps/journeys-admin/src/components/VisitorInfo/VisitorDetails/VisitorDetails.spec.tsx
  • apps/journeys-admin/src/components/VisitorInfo/VisitorDetails/VisitorDetails.stories.tsx
  • apps/journeys-admin/src/components/VisitorInfo/VisitorDetails/VisitorDetails.tsx
  • apps/journeys-admin/src/components/VisitorInfo/VisitorInfo.spec.tsx
  • apps/journeys-admin/src/components/VisitorInfo/VisitorInfo.stories.tsx
  • apps/journeys-admin/src/components/VisitorInfo/VisitorJourneysList/VisitorJourneysList.spec.tsx
  • apps/journeys-admin/src/components/VisitorInfo/VisitorJourneysList/VisitorJourneysList.stories.tsx
  • apps/journeys-admin/src/components/VisitorInfo/VisitorJourneysList/VisitorJourneysList.tsx
  • apps/journeys-admin/src/components/VisitorsList/VisitorList.spec.tsx
  • apps/journeys-admin/src/components/VisitorsList/VisitorsList.stories.tsx
  • apps/journeys-admin/src/components/VisitorsList/VisitorsList.tsx
  • apps/journeys-admin/src/libs/apolloClient/DebounceLink/DebounceLink.spec.ts
  • apps/journeys-admin/src/libs/apolloClient/DebounceLink/DebounceLink.ts
  • apps/journeys-admin/src/libs/apolloClient/DebounceLink/index.ts
  • apps/journeys-admin/src/libs/apolloClient/MutationQueueLink/MutationQueueLink.spec.ts
  • apps/journeys-admin/src/libs/apolloClient/MutationQueueLink/MutationQueueLink.ts
  • apps/journeys-admin/src/libs/apolloClient/MutationQueueLink/index.ts
  • apps/journeys-admin/src/libs/apolloClient/apolloClient.test.ts
  • apps/journeys-admin/src/libs/apolloClient/apolloClient.ts
  • apps/journeys-admin/src/libs/apolloClient/prependMuxVideo.ts
  • apps/journeys-admin/src/libs/blockCreateUpdate/blockCreateUpdate.ts
  • apps/journeys-admin/src/libs/blockDeleteUpdate/blockDeleteUpdate.ts
  • apps/journeys-admin/src/libs/checkConditionalRedirect/checkConditionalRedirect.spec.tsx
  • apps/journeys-admin/src/libs/checkConditionalRedirect/checkConditionalRedirect.ts
  • apps/journeys-admin/src/libs/evictFromTemplateGalleryPages/evictFromTemplateGalleryPages.ts
  • apps/journeys-admin/src/libs/initAndAuthApp/initAndAuthApp.spec.tsx
  • apps/journeys-admin/src/libs/initAndAuthApp/initAndAuthApp.ts
  • apps/journeys-admin/src/libs/useAdminJourneysQuery/useAdminJourneysQuery.spec.tsx
  • apps/journeys-admin/src/libs/useAdminJourneysQuery/useAdminJourneysQuery.ts
  • apps/journeys-admin/src/libs/useAdminJourneysSuspenseQuery/useAdminJourneysSuspenseQuery.spec.tsx
  • apps/journeys-admin/src/libs/useAdminJourneysSuspenseQuery/useAdminJourneysSuspenseQuery.ts
  • apps/journeys-admin/src/libs/useBlockActionChatUpdateMutation/useBlockActionChatUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockActionChatUpdateMutation/useBlockActionChatUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useBlockActionChatUpdateMutation/useBlockActionChatUpdateMutation.tsx
  • apps/journeys-admin/src/libs/useBlockActionDeleteMutation/useBlockActionDeleteMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockActionDeleteMutation/useBlockActionDeleteMutation.spec.tsx
  • apps/journeys-admin/src/libs/useBlockActionDeleteMutation/useBlockActionDeleteMutation.ts
  • apps/journeys-admin/src/libs/useBlockActionEmailUpdateMutation/useBlockActionEmailUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockActionEmailUpdateMutation/useBlockActionEmailUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useBlockActionEmailUpdateMutation/useBlockActionEmailUpdateMutation.tsx
  • apps/journeys-admin/src/libs/useBlockActionLinkUpdateMutation/useBlockActionLinkUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockActionLinkUpdateMutation/useBlockActionLinkUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useBlockActionLinkUpdateMutation/useBlockActionLinkUpdateMutation.tsx
  • apps/journeys-admin/src/libs/useBlockActionNavigateToBlockUpdateMutation/useBlockActionNavigateToBlockUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockActionNavigateToBlockUpdateMutation/useBlockActionNavigateToBlockUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useBlockActionNavigateToBlockUpdateMutation/useBlockActionNavigateToBlockUpdateMutation.ts
  • apps/journeys-admin/src/libs/useBlockActionPhoneUpdateMutation/useBlockActionPhoneUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockActionPhoneUpdateMutation/useBlockActionPhoneUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useBlockActionPhoneUpdateMutation/useBlockActionPhoneUpdateMutation.tsx
  • apps/journeys-admin/src/libs/useBlockDeleteMutation/useBlockDeleteMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockDeleteMutation/useBlockDeleteMutation.spec.tsx
  • apps/journeys-admin/src/libs/useBlockDeleteMutation/useBlockDeleteMutation.ts
  • apps/journeys-admin/src/libs/useBlockOrderUpdateMutation/useBlockOrderUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockOrderUpdateMutation/useBlockOrderUpdateMutation.tsx
  • apps/journeys-admin/src/libs/useBlockRestoreMutation/useBlockRestoreMutation.mock.ts
  • apps/journeys-admin/src/libs/useBlockRestoreMutation/useBlockRestoreMutation.spec.tsx
  • apps/journeys-admin/src/libs/useBlockRestoreMutation/useBlockRestoreMutation.tsx
  • apps/journeys-admin/src/libs/useCanPublishCollection/useCanPublishCollection.spec.tsx
  • apps/journeys-admin/src/libs/useCloudflareUploadByFileMutation/useCloudflareUploadByFileMutation.mock.ts
  • apps/journeys-admin/src/libs/useCloudflareUploadByFileMutation/useCloudflareUploadByFileMutation.spec.tsx
  • apps/journeys-admin/src/libs/useCloudflareUploadByFileMutation/useCloudflareUploadByFileMutation.ts
  • apps/journeys-admin/src/libs/useCoverBlockDeleteMutation/useCoverBlockDeleteMutation.ts
  • apps/journeys-admin/src/libs/useCoverBlockRestoreMutation/useCoverBlockRestoreMutation.ts
  • apps/journeys-admin/src/libs/useCurrentUserLazyQuery/useCurrentUser.spec.tsx
  • apps/journeys-admin/src/libs/useCurrentUserLazyQuery/useCurrentUserLazyQuery.mock.ts
  • apps/journeys-admin/src/libs/useCurrentUserLazyQuery/useCurrentUserLazyQuery.ts
  • apps/journeys-admin/src/libs/useCustomDomainsQuery/useCustomDomainsQuery.mock.ts
  • apps/journeys-admin/src/libs/useCustomDomainsQuery/useCustomDomainsQuery.spec.tsx
  • apps/journeys-admin/src/libs/useCustomDomainsQuery/useCustomDomainsQuery.tsx
  • apps/journeys-admin/src/libs/useHostCreate/useHostCreate.spec.tsx
  • apps/journeys-admin/src/libs/useHostCreateMutation/useHostCreateMutation.mock.ts
  • apps/journeys-admin/src/libs/useHostCreateMutation/useHostCreateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useHostCreateMutation/useHostCreateMutation.ts
  • apps/journeys-admin/src/libs/useHostUpdateMutation/useHostUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useHostUpdateMutation/useHostUpdateMutation.ts
  • apps/journeys-admin/src/libs/useIntegrationQuery/useIntegrationQuery.mock.ts
  • apps/journeys-admin/src/libs/useIntegrationQuery/useIntegrationQuery.spec.tsx
  • apps/journeys-admin/src/libs/useIntegrationQuery/useIntegrationQuery.ts
  • apps/journeys-admin/src/libs/useJourneyContactsExport/useJourneyContactsExport.tsx
  • apps/journeys-admin/src/libs/useJourneyCreateMutation/useJourneyCreateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useJourneyCreateMutation/useJourneyCreateMutation.ts
  • apps/journeys-admin/src/libs/useJourneyCustomizationDescriptionUpdateMutation/useJourneyCustomizationDescriptionUpdateMutation.ts
  • apps/journeys-admin/src/libs/useJourneyEventsExport/useJourneyEventsExport.mock.ts
  • apps/journeys-admin/src/libs/useJourneyEventsExport/useJourneyEventsExport.spec.tsx
  • apps/journeys-admin/src/libs/useJourneyEventsExport/useJourneyEventsExport.tsx
  • apps/journeys-admin/src/libs/useJourneyForShareLazyQuery/useJourneyForShareLazyQuery.ts
  • apps/journeys-admin/src/libs/useJourneyImageBlockAssociationUpdateMutation/useJourneyImageBlockAssociationUpdateMutation.mock.tsx
  • apps/journeys-admin/src/libs/useJourneyImageBlockAssociationUpdateMutation/useJourneyImageBlockAssociationUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useJourneyImageBlockAssociationUpdateMutation/useJourneyImageBlockAssociationUpdateMutation.ts
  • apps/journeys-admin/src/libs/useJourneyImageBlockCreateMutation/useJourneyImageBlockCreateMutation.mock.tsx
  • apps/journeys-admin/src/libs/useJourneyImageBlockCreateMutation/useJourneyImageBlockCreateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useJourneyImageBlockCreateMutation/useJourneyImageBlockCreateMutation.ts
  • apps/journeys-admin/src/libs/useJourneyImageBlockDeleteMutation/useJourneyImageBlockDeleteMutation.spec.tsx
  • apps/journeys-admin/src/libs/useJourneyImageBlockDeleteMutation/useJourneyImageBlockDeleteMutation.ts
  • apps/journeys-admin/src/libs/useJourneyImageBlockUpdateMutation/useJourneyImageBlockUpdateMutation.mock.tsx
  • apps/journeys-admin/src/libs/useJourneyImageBlockUpdateMutation/useJourneyImageBlockUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useJourneyImageBlockUpdateMutation/useJourneyImageBlockUpdateMutation.ts
  • apps/journeys-admin/src/libs/useJourneyNotificationUpdate/useJourneyNotificationUpdate.mock.ts
  • apps/journeys-admin/src/libs/useJourneyNotificationUpdate/useJourneyNotificationUpdate.spec.tsx
  • apps/journeys-admin/src/libs/useJourneyNotificationUpdate/useJourneyNotificationUpdate.tsx
  • apps/journeys-admin/src/libs/useJourneyUpdateMutation/useJourneyUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useJourneyUpdateMutation/useJourneyUpdateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useJourneyUpdateMutation/useJourneyUpdateMutation.ts
  • apps/journeys-admin/src/libs/useMenuBlockCreateMutation/useMenuBlockCreateMutation.mock.ts
  • apps/journeys-admin/src/libs/useMenuBlockCreateMutation/useMenuBlockCreateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useMenuBlockCreateMutation/useMenuBlockCreateMutation.ts
  • apps/journeys-admin/src/libs/useMenuBlockDeleteMutation/useMenuBlockDeleteMutation.mock.ts
  • apps/journeys-admin/src/libs/useMenuBlockDeleteMutation/useMenuBlockDeleteMutation.spec.tsx
  • apps/journeys-admin/src/libs/useMenuBlockDeleteMutation/useMenuBlockDeleteMutation.ts
  • apps/journeys-admin/src/libs/useMenuBlockRestoreMutation/useMenuBlockRestoreMutation.mock.ts
  • apps/journeys-admin/src/libs/useMenuBlockRestoreMutation/useMenuBlockRestoreMutation.spec.tsx
  • apps/journeys-admin/src/libs/useMenuBlockRestoreMutation/useMenuBlockRestoreMutation.ts
  • apps/journeys-admin/src/libs/useStepAndCardBlockCreateMutation/useStepAndCardBlockCreateMutation.mock.ts
  • apps/journeys-admin/src/libs/useStepAndCardBlockCreateMutation/useStepAndCardBlockCreateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useStepAndCardBlockCreateMutation/useStepAndCardBlockCreateMutation.ts
  • apps/journeys-admin/src/libs/useStepBlockNextBlockUpdateMutation/useStepBlockNextBlockUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useStepBlockNextBlockUpdateMutation/useStepBlockNextBlockUpdateMutation.ts
  • apps/journeys-admin/src/libs/useStepBlockPositionUpdateMutation/useStepBlockPositionUpdateMutation.ts
  • apps/journeys-admin/src/libs/useTeamCreateMutation/useTeamCreateMutation.tsx
  • apps/journeys-admin/src/libs/useTemplateFamilyStatsAggregateLazyQuery/useTemplateFamilyStatsAggregateLazyQuery.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageAssignJourneyMutation/useTemplateGalleryPageAssignJourneyMutation.mock.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageAssignJourneyMutation/useTemplateGalleryPageAssignJourneyMutation.spec.tsx
  • apps/journeys-admin/src/libs/useTemplateGalleryPageAssignJourneyMutation/useTemplateGalleryPageAssignJourneyMutation.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageCreateMutation/useTemplateGalleryPageCreateMutation.mock.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageCreateMutation/useTemplateGalleryPageCreateMutation.spec.tsx
  • apps/journeys-admin/src/libs/useTemplateGalleryPageCreateMutation/useTemplateGalleryPageCreateMutation.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageDeleteMutation/useTemplateGalleryPageDeleteMutation.mock.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageDeleteMutation/useTemplateGalleryPageDeleteMutation.spec.tsx
  • apps/journeys-admin/src/libs/useTemplateGalleryPageDeleteMutation/useTemplateGalleryPageDeleteMutation.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageEmbedPreview/useTemplateGalleryPageEmbedPreview.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPagePublishMutation/useTemplateGalleryPagePublishMutation.mock.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPagePublishMutation/useTemplateGalleryPagePublishMutation.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageReorderTemplateMutation/useTemplateGalleryPageReorderTemplateMutation.mock.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageReorderTemplateMutation/useTemplateGalleryPageReorderTemplateMutation.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageUnpublishMutation/useTemplateGalleryPageUnpublishMutation.mock.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageUnpublishMutation/useTemplateGalleryPageUnpublishMutation.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageUpdateMutation/useTemplateGalleryPageUpdateMutation.mock.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPageUpdateMutation/useTemplateGalleryPageUpdateMutation.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPagesQuery/useTemplateGalleryPagesQuery.mock.ts
  • apps/journeys-admin/src/libs/useTemplateGalleryPagesQuery/useTemplateGalleryPagesQuery.ts
  • apps/journeys-admin/src/libs/useTextResponseWithButtonCreate/useTextResponseWithButtonCreate.mock.ts
  • apps/journeys-admin/src/libs/useTextResponseWithButtonCreate/useTextResponseWithButtonCreate.spec.tsx
  • apps/journeys-admin/src/libs/useTextResponseWithButtonCreate/useTextResponseWithButtonCreate.ts
  • apps/journeys-admin/src/libs/useTextResponseWithButtonDelete/useTextResponseWithButtonDelete.mock.ts
  • apps/journeys-admin/src/libs/useTextResponseWithButtonDelete/useTextResponseWithButtonDelete.spec.tsx
  • apps/journeys-admin/src/libs/useTextResponseWithButtonDelete/useTextResponseWithButtonDelete.ts
  • apps/journeys-admin/src/libs/useTextResponseWithButtonRestore/useTextResponseWithButtonRestore.mock.ts
  • apps/journeys-admin/src/libs/useTextResponseWithButtonRestore/useTextResponseWithButtonRestore.spec.tsx
  • apps/journeys-admin/src/libs/useTextResponseWithButtonRestore/useTextResponseWithButtonRestore.ts
  • apps/journeys-admin/src/libs/useTitleDescLanguageUpdateMutation/useTitleDescLanguageUpdateMutation.ts
  • apps/journeys-admin/src/libs/useUpdateJourneyHostMutation/useUpdateJourneyHostMutation.mock.ts
  • apps/journeys-admin/src/libs/useUpdateJourneyHostMutation/useUpdateJourneyHostMutation.ts
  • apps/journeys-admin/src/libs/useUserInvitesLazyQuery/index.ts
  • apps/journeys-admin/src/libs/useUserInvitesLazyQuery/useUserInvitesLazyQuery.tsx
  • apps/journeys-admin/src/libs/useUserRoleSuspenseQuery/useUserRoleSuspenseQuery.tsx
  • apps/journeys-admin/src/libs/useUserTeamsAndInvitesLazyQuery/useUserTeamsAndInvitesLazyQuery.spec.tsx
  • apps/journeys-admin/src/libs/useUserTeamsAndInvitesLazyQuery/useUserTeamsAndInvitesLazyQuery.ts
  • apps/journeys-admin/src/libs/useUserTeamsAndInvitesQuery/useUserTeamsAndInvitesQuery.ts
  • apps/journeys-admin/test/ApolloLoadingProvider.tsx
  • apps/journeys/__tests__/pages/home/template-gallery/[slug].spec.tsx
  • apps/journeys/pages/[hostname]/[journeySlug].tsx
  • apps/journeys/pages/[hostname]/[journeySlug]/[stepSlug].tsx
  • apps/journeys/pages/[hostname]/embed/[journeySlug].tsx
  • apps/journeys/pages/[hostname]/index.tsx
  • apps/journeys/pages/_app.tsx
  • apps/journeys/pages/api/oembed.ts
  • apps/journeys/pages/home/[journeySlug].tsx
  • apps/journeys/pages/home/[journeySlug]/[stepSlug].tsx
  • apps/journeys/pages/home/embed/[journeySlug].tsx
  • apps/journeys/pages/home/index.tsx
  • apps/journeys/pages/home/template-gallery/[slug].tsx
  • apps/journeys/setupTests.ts
  • apps/journeys/src/components/Conductor/Conductor.apologistChat.spec.tsx
  • apps/journeys/src/components/Conductor/Conductor.spec.tsx
  • apps/journeys/src/components/Conductor/Conductor.stories.tsx
  • apps/journeys/src/components/Conductor/Conductor.tsx
  • apps/journeys/src/components/Conductor/DynamicCardList/DynamicCardList.spec.tsx
  • apps/journeys/src/components/Conductor/HotkeyNavigation/HotkeyNavigation.spec.tsx
  • apps/journeys/src/components/Conductor/NavigationButton/NavigationButton.spec.tsx
  • apps/journeys/src/components/Conductor/SwipeNavigation/SwipeNavigation.spec.tsx
  • apps/journeys/src/components/EmbeddedPreview/EmbeddedPreview.spec.tsx
  • apps/journeys/src/components/EmbeddedPreview/EmbeddedPreview.stories.tsx
  • apps/journeys/src/components/JourneyRenderer/JourneyRenderer.spec.tsx
  • apps/journeys/src/components/WebsiteView/WebsiteView.spec.tsx
  • apps/journeys/src/components/WebsiteView/WebsiteView.stories.tsx
  • apps/journeys/src/components/WebsiteView/WebsiteView.tsx
  • apps/journeys/src/libs/apolloClient/apolloClient.ts
  • apps/journeys/src/libs/getCardChatEnabled/getCardChatEnabled.ts
  • apps/player/src/lib/apolloClient/apolloClient.ts
  • apps/player/src/setupTests.tsx
  • apps/resources/pages/_app.tsx
  • apps/resources/pages/api/languages.spec.ts
  • apps/resources/pages/api/languages.ts
  • apps/resources/pages/resources/index.tsx
  • apps/resources/pages/watch/[part1].tsx
  • apps/resources/pages/watch/[part1]/[part2].tsx
  • apps/resources/pages/watch/[part1]/[part2]/[part3].tsx
  • apps/resources/pages/watch/index.tsx
  • apps/resources/pages/watch/videos.tsx
  • apps/resources/setupTests.tsx
  • apps/resources/src/components/CollectionsPage/CollectionVideoPlayer/CollectionVideoPlayer.tsx
  • apps/resources/src/components/Header/Header.spec.tsx
  • apps/resources/src/components/Header/LocalAppBar/LocalAppBar.spec.tsx
  • apps/resources/src/components/LanguageSwitchDialog/AudioTrackSelect/AudioTrackSelect.spec.tsx
  • apps/resources/src/components/LanguageSwitchDialog/LanguageSwitchDialog.spec.tsx
  • apps/resources/src/components/LanguageSwitchDialog/SubtitlesSelect/SubtitlesSelect.spec.tsx
  • apps/resources/src/components/NewVideoContentPage/NewVideoContentPage.spec.tsx
  • apps/resources/src/components/NewVideoContentPage/VideoContentHero/ContentHeader/ContentHeader.spec.tsx
  • apps/resources/src/components/NewVideoContentPage/VideoContentHero/VideoContentHero.spec.tsx
  • apps/resources/src/components/PageWrapper/PageWrapper.spec.tsx
  • apps/resources/src/components/ResourcesView/ResourcesView.spec.tsx
  • apps/resources/src/components/VideoContainerPage/AudioLanguageSelect/AudioLanguageSelect.spec.tsx
  • apps/resources/src/components/VideoContainerPage/AudioLanguageSelect/AudioLanguageSelectContent/AudioLanguageSelectContent.spec.tsx
  • apps/resources/src/components/VideoContainerPage/VideoContainerPage.spec.tsx
  • apps/resources/src/components/VideoContainerPage/VideoContainerPage.stories.tsx
  • apps/resources/src/components/VideoContentPage/AudioLanguageButton/AudioLanguageButton.spec.tsx
  • apps/resources/src/components/VideoContentPage/VideoContentPage.spec.tsx
  • apps/resources/src/components/VideoContentPage/VideoHero/VideoHero.spec.tsx
  • apps/resources/src/components/VideoContentPage/VideoHero/VideoHeroOverlay/VideoHeroOverlay.spec.tsx
  • apps/resources/src/components/VideoContentPage/VideoHero/VideoPlayer/VideoControls/VideoControls.spec.tsx
  • apps/resources/src/components/Videos/testData.generator.ts
  • apps/resources/src/components/VideosPage/VideosPage.spec.tsx
  • apps/resources/src/components/VideosPage/VideosPage.tsx
  • apps/resources/src/libs/apolloClient/apolloClient.ts
  • apps/resources/src/libs/useVariantLanguagesIdAndSlugQuery/useVariantLanguagesIdAndSlugQuery.spec.tsx
  • apps/resources/src/libs/useVariantLanguagesIdAndSlugQuery/useVariantLanguagesIdAndSlugQuery.ts
  • apps/resources/src/libs/useVideoChildren/useVideoChildren.spec.tsx
  • apps/resources/src/libs/useVideoChildren/useVideoChildren.ts
  • apps/resources/src/libs/watchContext/WatchContext.spec.tsx
  • apps/resources/src/libs/watchContext/useSubtitleUpdate/useSubtitleUpdate.mock.ts
  • apps/resources/src/libs/watchContext/useSubtitleUpdate/useSubtitleUpdate.spec.tsx
  • apps/resources/src/libs/watchContext/useSubtitleUpdate/useSubtitleUpdate.tsx
  • apps/short-links/setupTests.ts
  • apps/short-links/src/app/[hostname]/[...pathname]/page.test.ts
  • apps/short-links/src/app/[hostname]/[...pathname]/page.ts
  • apps/short-links/src/lib/apolloClient/apolloClient.ts
  • apps/videos-admin/setupTests.tsx
  • apps/videos-admin/src/app/(dashboard)/_AppNavbar/AppNavBar.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/_AppNavbar/_SideMenuMobile/SideMenuMobile.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/_SideMenu/SideMenu.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/languages/[languageId]/_LanguageCountryLinks/LanguageCountryLinks.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/languages/[languageId]/_LanguageCountryLinks/LanguageCountryLinks.tsx
  • apps/videos-admin/src/app/(dashboard)/languages/[languageId]/_LanguageForm/LanguageForm.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/languages/[languageId]/_LanguageForm/LanguageForm.tsx
  • apps/videos-admin/src/app/(dashboard)/languages/_LanguageList/LanguageList.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/languages/_LanguageList/LanguageList.tsx
  • apps/videos-admin/src/app/(dashboard)/languages/_WessImportButton/WessImportButton.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/languages/_WessImportButton/WessImportButton.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/@studyQuestions/default.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/@studyQuestions/default.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_RestrictTranslations/RestrictTranslations.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_RestrictTranslations/RestrictTranslations.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_RestrictedDownloads/RestrictedDownloads.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_RestrictedDownloads/RestrictedDownloads.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_RestrictedViews/RestrictedViews.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_RestrictedViews/RestrictedViews.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoBibleCitation/VideoBibleCitation.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoDescription/VideoDescription.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoDescription/VideoDescription.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoImageAlt/VideoImageAlt.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoImageAlt/VideoImageAlt.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoImages/BannerImage/BannerImage.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoImages/BannerImage/BannerImage.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoImages/HdImage/HdImage.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoImages/HdImage/HdImage.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoInformation/VideoInformation.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoInformation/VideoInformation.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoInformation/VideoKeywords.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoInformation/VideoKeywords.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoSnippet/VideoSnippet.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoSnippet/VideoSnippet.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoTabs/VideoTabs.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/_VideoTabs/VideoTabs.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/[variantId]/delete/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/[variantId]/delete/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/[variantId]/download/[downloadId]/add/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/[variantId]/download/[downloadId]/add/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/[variantId]/download/[downloadId]/delete/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/[variantId]/download/[downloadId]/delete/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/[variantId]/layout.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/[variantId]/layout.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/_VariantVideo/VariantVideo.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/add/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/add/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/layout.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/layout.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/publishAll/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/audio/publishAll/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/children/[childId]/delete/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/children/add/_ExistingVideoByIdSelector/ExistingVideoByIdSelector.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/children/add/_ExistingVideoByIdSelector/ExistingVideoByIdSelector.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/children/add/_ExistingVideoSelector/ExistingVideoSelector.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/children/add/_ExistingVideoSelector/ExistingVideoSelector.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/children/add/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/children/layout.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/citation/[citationId]/delete/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/citation/[citationId]/delete/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/citation/_CitationForm/CitationForm.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/delete/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/delete/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/delete/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/delete/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/subtitle/[subtitleId]/_handleSrtFile/handleSrtFile.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/subtitle/[subtitleId]/_handleVttFile/handleVttFile.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/subtitle/[subtitleId]/delete/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/subtitle/[subtitleId]/delete/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/subtitle/[subtitleId]/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/subtitle/[subtitleId]/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/subtitle/add/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/[editionId]/subtitle/add/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/add/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/add/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/editions/layout.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/image/[aspectRatio]/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/image/[aspectRatio]/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/layout.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/layout.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/publishAll/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/publishAll/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/studyQuestion/[studyQuestionId]/delete/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/studyQuestion/[studyQuestionId]/delete/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/studyQuestion/[studyQuestionId]/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/studyQuestion/[studyQuestionId]/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/studyQuestion/add/page.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/studyQuestion/add/page.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/troubleshooting/_AlgoliaTroubleshooting/AlgoliaTroubleshooting.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/[videoId]/troubleshooting/_AvailableLanguagesTroubleshooting/AvailableLanguagesTroubleshooting.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/_VideoCreateForm/VideoCreateForm.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/_VideoCreateForm/VideoCreateForm.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/_VideoList/VideoList.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/_VideoList/VideoList.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/algolia-debugging/_AlgoliaDebugging/AlgoliaDebugging.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/algolia-debugging/_AlgoliaDebugging/AlgoliaDebugging.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/status-pipeline/_StatusPipeline/StatusPipeline.spec.tsx
  • apps/videos-admin/src/app/(dashboard)/videos/status-pipeline/_StatusPipeline/StatusPipeline.tsx
  • apps/videos-admin/src/app/_ApolloProvider/ApolloProvider.tsx
  • apps/videos-admin/src/app/_UploadVideoVariantProvider/UploadVideoVariantProvider.spec.tsx
  • apps/videos-admin/src/app/_UploadVideoVariantProvider/UploadVideoVariantProvider.tsx
  • apps/videos-admin/src/app/users/unauthorized/page.tsx
  • apps/videos-admin/src/components/CenterPage/Centerpage.spec.tsx
  • apps/videos-admin/src/components/FormLanguageSelect/FormLanguageSelect.spec.tsx
  • apps/videos-admin/src/components/MenuContent/MenuContent.spec.tsx
  • apps/videos-admin/src/components/MenuContent/MenuContent.tsx
  • apps/videos-admin/src/libs/apollo/apolloClient.ts
  • apps/videos-admin/src/libs/apollo/makeClient.ts
  • apps/videos-admin/src/libs/useCreateR2Asset/useCreateR2Asset.mock.ts
  • apps/videos-admin/src/libs/useCreateR2Asset/useCreateR2Asset.spec.tsx
  • apps/videos-admin/src/libs/useCreateR2Asset/useCreateR2Asset.tsx
  • apps/videos-admin/src/proxy.ts
  • libs/journeys/ui/setupTests.ts
  • libs/journeys/ui/src/components/BlockRenderer/BlockRenderer.spec.tsx
  • libs/journeys/ui/src/components/Button/Button.spec.tsx
  • libs/journeys/ui/src/components/Button/Button.stories.tsx
  • libs/journeys/ui/src/components/Button/Button.tsx
  • libs/journeys/ui/src/components/Card/Card.mock.ts
  • libs/journeys/ui/src/components/Card/Card.spec.tsx
  • libs/journeys/ui/src/components/Card/Card.stories.tsx
  • libs/journeys/ui/src/components/Card/Card.tsx
  • libs/journeys/ui/src/components/CopyToTeamDialog/CopyToTeamDialog.spec.tsx
  • libs/journeys/ui/src/components/CopyToTeamDialog/CopyToTeamDialog.stories.tsx
  • libs/journeys/ui/src/components/FramePortal/FramePortal.stories.tsx
  • libs/journeys/ui/src/components/Multiselect/Multiselect.stories.tsx
  • libs/journeys/ui/src/components/RadioQuestion/RadioQuestion.spec.tsx
  • libs/journeys/ui/src/components/RadioQuestion/RadioQuestion.stories.tsx
  • libs/journeys/ui/src/components/RadioQuestion/RadioQuestion.tsx
  • libs/journeys/ui/src/components/SearchBar/LanguageButtons/LanguageButtons.spec.tsx
  • libs/journeys/ui/src/components/SearchBar/SearchBar.spec.tsx
  • libs/journeys/ui/src/components/SearchBar/SearchBar.stories.tsx
  • libs/journeys/ui/src/components/SearchBar/SearchBar.tsx
  • libs/journeys/ui/src/components/SearchBar/SearchDropdown/CountryLanguageSelector/CountryLanguageSelector.spec.tsx
  • libs/journeys/ui/src/components/SearchBar/SearchDropdown/RefinementGroups/RefinementGroup/RefinementGroup.spec.tsx
  • libs/journeys/ui/src/components/SearchBar/SearchDropdown/RefinementGroups/RefinementGroups.spec.tsx
  • libs/journeys/ui/src/components/SearchBar/SearchDropdown/SearchbarDropdown.spec.tsx
  • libs/journeys/ui/src/components/SignUp/SignUp.spec.tsx
  • libs/journeys/ui/src/components/SignUp/SignUp.stories.tsx
  • libs/journeys/ui/src/components/SignUp/SignUp.tsx
  • libs/journeys/ui/src/components/Step/Step.spec.tsx
  • libs/journeys/ui/src/components/Step/Step.tsx
  • libs/journeys/ui/src/components/StepFooter/ChatButtons/ChatButtons.spec.tsx
  • libs/journeys/ui/src/components/StepFooter/ChatButtons/ChatButtons.stories.tsx
  • libs/journeys/ui/src/components/StepFooter/ChatButtons/ChatButtons.tsx
  • libs/journeys/ui/src/components/StepFooter/StepFooter.apologistChat.spec.tsx
  • libs/journeys/ui/src/components/StepFooter/StepFooter.spec.tsx
  • libs/journeys/ui/src/components/StepFooter/StepFooter.stories.tsx
  • libs/journeys/ui/src/components/StepHeader/InformationButton/InformationButton.spec.tsx
  • libs/journeys/ui/src/components/StepHeader/StepHeader.stories.tsx
  • libs/journeys/ui/src/components/StepHeader/StepHeaderMenu/StepHeaderMenu.stories.tsx
  • libs/journeys/ui/src/components/TeamProvider/TeamProvider.mock.ts
  • libs/journeys/ui/src/components/TeamProvider/TeamProvider.spec.tsx
  • libs/journeys/ui/src/components/TeamProvider/TeamProvider.tsx
  • libs/journeys/ui/src/components/TemplateGallery/HeaderAndLanguageFilter/HeaderAndLanguageFilter.spec.tsx
  • libs/journeys/ui/src/components/TemplateGallery/HeaderAndLanguageFilter/HeaderAndLanguageFilter.tsx
  • libs/journeys/ui/src/components/TemplateGallery/TagCarousels/TagCarousels.spec.tsx
  • libs/journeys/ui/src/components/TemplateGallery/TagsFilter/TagsFilter.spec.tsx
  • libs/journeys/ui/src/components/TemplateGallery/TemplateGallery.spec.tsx
  • libs/journeys/ui/src/components/TemplateGallery/data.ts
  • libs/journeys/ui/src/components/TemplateGalleryCard/TemplateGalleryCard.stories.tsx
  • libs/journeys/ui/src/components/TemplateSections/TemplateSections.spec.tsx
  • libs/journeys/ui/src/components/TemplateSections/TemplateSections.stories.tsx
  • libs/journeys/ui/src/components/TemplateView/CreateJourneyButton/CreateJourneyButton.spec.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateFooter/TemplateFooter.spec.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateFooter/TemplateFooter.stories.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplatePreviewTabs/TemplateCardPreview/TemplateCardPreview.spec.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplatePreviewTabs/TemplatePreviewTabs.spec.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateTags/TemplateTags.spec.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateTags/TemplateTags.stories.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateView.spec.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateView.stories.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateViewHeader/SocialImage/SocialImage.stories.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateViewHeader/TemplateActionButton/TemplateActionButton.spec.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateViewHeader/TemplateEditButton/TemplateEditButton.spec.tsx
  • libs/journeys/ui/src/components/TemplateView/TemplateViewHeader/TemplateViewHeader.spec.tsx
  • libs/journeys/ui/src/components/TextResponse/TextResponse.stories.tsx
  • libs/journeys/ui/src/components/Video/Video.spec.tsx
  • libs/journeys/ui/src/components/Video/Video.stories.tsx
  • libs/journeys/ui/src/components/Video/VideoControls/VideoControls.spec.tsx
  • libs/journeys/ui/src/components/VideoEvents/VideoEvents.spec.tsx
  • libs/journeys/ui/src/components/VideoEvents/VideoEvents.tsx
  • libs/journeys/ui/src/libs/algolia/SearchBarProvider/SearchBarProvider.spec.tsx
  • libs/journeys/ui/src/libs/block/block.ts
  • libs/journeys/ui/src/libs/useCountryQuery/useCountryQuery.mock.ts
  • libs/journeys/ui/src/libs/useCountryQuery/useCountryQuery.spec.tsx
  • libs/journeys/ui/src/libs/useCountryQuery/useCountryQuery.ts
  • libs/journeys/ui/src/libs/useJourneyAiTranslateSubscription/useJourneyAiTranslateSubscription.spec.tsx
  • libs/journeys/ui/src/libs/useJourneyAiTranslateSubscription/useJourneyAiTranslateSubscription.ts
  • libs/journeys/ui/src/libs/useJourneyAnalyticsQuery/useJourneyAnalyticsQuery.mock.ts
  • libs/journeys/ui/src/libs/useJourneyAnalyticsQuery/useJourneyAnalyticsQuery.ts
  • libs/journeys/ui/src/libs/useJourneyCustomizationDescriptionTranslateMutation/useJourneyCustomizationDescriptionTranslateMutation.ts
  • libs/journeys/ui/src/libs/useJourneyDuplicateMutation/useJourneyDuplicateMutation.ts
  • libs/journeys/ui/src/libs/useJourneyQuery/useJourneyQuery.spec.tsx
  • libs/journeys/ui/src/libs/useJourneyQuery/useJourneyQuery.ts
  • libs/journeys/ui/src/libs/useJourneysQuery/useJourneysQuery.spec.tsx
  • libs/journeys/ui/src/libs/useJourneysQuery/useJourneysQuery.ts
  • libs/journeys/ui/src/libs/useLanguagesContinentsQuery/useLanguagesContinentsQuery.mock.ts
  • libs/journeys/ui/src/libs/useLanguagesContinentsQuery/useLanguagesContinentsQuery.spec.tsx
  • libs/journeys/ui/src/libs/useLanguagesContinentsQuery/useLanguagesContinentsQuery.ts
  • libs/journeys/ui/src/libs/useLanguagesQuery/useLanguagesQuery.mock.ts
  • libs/journeys/ui/src/libs/useLanguagesQuery/useLanguagesQuery.spec.tsx
  • libs/journeys/ui/src/libs/useLanguagesQuery/useLanguagesQuery.ts
  • libs/journeys/ui/src/libs/useStepNavigationEvents/useStepNavigationEvents.spec.tsx
  • libs/journeys/ui/src/libs/useStepNavigationEvents/useStepNavigationEvents.ts
  • libs/journeys/ui/src/libs/useTagsQuery/useTagsQuery.spec.tsx
  • libs/journeys/ui/src/libs/useTagsQuery/useTagsQuery.ts
  • libs/journeys/ui/src/libs/useUpdateActiveTeam/useUpdateActiveTeam.ts
  • libs/journeys/ui/src/libs/useUpdateLastActiveTeamIdMutation/useUpdateLastActiveTeamIdMutation.ts
  • libs/journeys/ui/src/libs/useUserRoleQuery/useUserRoleQuery.tsx
  • libs/journeys/ui/src/libs/useYouTubeClosedCaptions/useYouTubeClosedCaptions.spec.tsx
  • libs/journeys/ui/src/libs/useYouTubeClosedCaptions/useYouTubeClosedCaptions.ts
  • libs/journeys/ui/test/ApolloLoadingProvider.tsx
  • libs/shared/ui-dynamic/setupTests.ts
  • libs/shared/ui/setupTests.ts
  • libs/yoga/src/apolloClient/apolloClient.spec.ts
  • libs/yoga/src/apolloClient/apolloClient.ts
  • package.json

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant