Skip to content

chore(webapp): migrate from Remix compiler to Vite#4188

Open
kathiekiwi wants to merge 5 commits into
mainfrom
chore/vite-migration
Open

chore(webapp): migrate from Remix compiler to Vite#4188
kathiekiwi wants to merge 5 commits into
mainfrom
chore/vite-migration

Conversation

@kathiekiwi

@kathiekiwi kathiekiwi commented Jul 8, 2026

Copy link
Copy Markdown
Collaborator

Replaces Remix compiler with the Vite plugin. The Express server (cluster, socket.io, ws) and the Docker image contract are unchanged.

Classic compiler Vite
Dev iteration ~1 min — full process restart on every edit (engines, workers, ws reconnects) instant HMR, server modules hot-swap without a restart
Production build ~11s (esbuild) ~40s (rollup)

The production build is the one regression — a one-time CI cost per deploy vs. a per-edit win for every dev. The classic compiler is deprecated; Vite is the supported path.

Fixes

  • Destructured route exports (export const { action } = ...) that Vite can't tree-shake
  • Server-only imports leaking into routes/components (auth redirect cookies, logger)
  • CJS interop: redlock, cron-parser, cuid, regression, radix-ui, kapa
  • A TDZ bug in handleWebsockets.server.ts that CJS masked
  • Geist fonts now go through the asset pipeline (fingerprinted, immutable cache)

Tested

  • Dev + prod builds boot and serve the dashboard (all sections crawled, code editors/parsers verified)
  • trigger dev CLI connects over websockets
  • Typecheck, lint, unit tests green

@changeset-bot

changeset-bot Bot commented Jul 8, 2026

Copy link
Copy Markdown

🦋 Changeset detected

Latest commit: 9aadad2

The changes in this PR will be included in the next version bump.

This PR includes changesets to release 28 packages
Name Type
@trigger.dev/sdk Patch
@trigger.dev/python Patch
@internal/dashboard-agent Patch
@internal/sdk-compat-tests Patch
@trigger.dev/build Patch
@trigger.dev/core Patch
@trigger.dev/plugins Patch
@trigger.dev/react-hooks Patch
@trigger.dev/redis-worker Patch
@trigger.dev/rsc Patch
@trigger.dev/schema-to-json Patch
@trigger.dev/database Patch
@trigger.dev/otlp-importer Patch
@trigger.dev/rbac Patch
@trigger.dev/sso Patch
trigger.dev Patch
@internal/cache Patch
@internal/clickhouse Patch
@internal/llm-model-catalog Patch
@internal/redis Patch
@internal/replication Patch
@internal/run-engine Patch
@internal/run-store Patch
@internal/schedule-engine Patch
@internal/testcontainers Patch
@internal/tracing Patch
@internal/tsql Patch
@internal/zod-worker Patch

Not sure what this means? Click here to learn what changesets are.

Click here if you're a maintainer who wants to add another changeset to this PR

@coderabbitai

coderabbitai Bot commented Jul 8, 2026

Copy link
Copy Markdown
Contributor

Review Change Stack

No actionable comments were generated in the recent review. 🎉

ℹ️ Recent review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 5d9b8a0b-ef2f-4a6e-bf25-2c53275e70e7

📥 Commits

Reviewing files that changed from the base of the PR and between bad78e6 and 9aadad2.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (36)
  • .changeset/vite-ignore-optional-imports.md
  • apps/webapp/app/components/primitives/Avatar.tsx
  • apps/webapp/app/presenters/v3/UsagePresenter.server.ts
  • apps/webapp/app/root.tsx
  • apps/webapp/app/routes/api.v1.errors.$errorId.ignore.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.resolve.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.unresolve.ts
  • apps/webapp/app/routes/api.v1.idempotencyKeys.$key.reset.ts
  • apps/webapp/app/routes/api.v1.orgs.$orgParam.projects.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.concurrency.override.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.concurrency.reset.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.pause.ts
  • apps/webapp/app/routes/api.v1.runs.$runId.metadata.ts
  • apps/webapp/app/routes/api.v1.sessions.$sessionId.snapshot-url.ts
  • apps/webapp/app/routes/auth.github.callback.tsx
  • apps/webapp/app/routes/auth.github.ts
  • apps/webapp/app/routes/auth.google.callback.tsx
  • apps/webapp/app/routes/auth.google.ts
  • apps/webapp/app/services/redirectCookies.server.ts
  • apps/webapp/app/tailwind.css
  • apps/webapp/app/utils/reloadingRegistry.server.ts
  • apps/webapp/app/v3/mollifier/routeOperationsToRun.server.ts
  • apps/webapp/app/v3/querySchemas.ts
  • apps/webapp/package.json
  • apps/webapp/remix.config.js
  • apps/webapp/remix.env.d.ts
  • apps/webapp/server.ts
  • apps/webapp/test/metadataRouteOperationsLogging.test.ts
  • apps/webapp/vite.config.ts
  • apps/webapp/vite/node-globals-shim.js
  • docker/Dockerfile
  • docker/docker-compose.yml
  • internal-packages/rbac/src/index.ts
  • internal-packages/run-engine/src/engine/locking.ts
  • internal-packages/sso/src/index.ts
  • packages/trigger-sdk/src/v3/aiAutoTelemetry.ts
💤 Files with no reviewable changes (2)
  • apps/webapp/app/tailwind.css
  • apps/webapp/remix.config.js
✅ Files skipped from review due to trivial changes (4)
  • apps/webapp/vite/node-globals-shim.js
  • apps/webapp/remix.env.d.ts
  • .changeset/vite-ignore-optional-imports.md
  • docker/docker-compose.yml
🚧 Files skipped from review as they are similar to previous changes (29)
  • apps/webapp/app/routes/auth.github.callback.tsx
  • apps/webapp/app/routes/api.v1.orgs.$orgParam.projects.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.ignore.ts
  • packages/trigger-sdk/src/v3/aiAutoTelemetry.ts
  • apps/webapp/app/routes/api.v1.idempotencyKeys.$key.reset.ts
  • apps/webapp/app/routes/auth.google.ts
  • apps/webapp/vite.config.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.pause.ts
  • apps/webapp/app/routes/auth.github.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.concurrency.reset.ts
  • apps/webapp/test/metadataRouteOperationsLogging.test.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.resolve.ts
  • internal-packages/rbac/src/index.ts
  • docker/Dockerfile
  • apps/webapp/app/routes/api.v1.sessions.$sessionId.snapshot-url.ts
  • apps/webapp/app/presenters/v3/UsagePresenter.server.ts
  • apps/webapp/app/v3/querySchemas.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.concurrency.override.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.unresolve.ts
  • apps/webapp/app/services/redirectCookies.server.ts
  • internal-packages/sso/src/index.ts
  • apps/webapp/app/utils/reloadingRegistry.server.ts
  • apps/webapp/app/routes/auth.google.callback.tsx
  • apps/webapp/app/root.tsx
  • apps/webapp/app/routes/api.v1.runs.$runId.metadata.ts
  • internal-packages/run-engine/src/engine/locking.ts
  • apps/webapp/app/components/primitives/Avatar.tsx
  • apps/webapp/package.json
  • apps/webapp/app/v3/mollifier/routeOperationsToRun.server.ts
📜 Recent review details
⏰ Context from checks skipped due to timeout. (9)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (9, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (6, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (3, 12)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (10, 10)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (10, 12)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (6, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (9, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (5, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (3, 10)
🧰 Additional context used
📓 Path-based instructions (5)
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

**/*.{ts,tsx}: Use types over interfaces for TypeScript
Avoid using enums; prefer string unions or const objects instead

Files:

  • apps/webapp/server.ts
{packages/core,apps/webapp}/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

Use zod for validation in packages/core and apps/webapp

Files:

  • apps/webapp/server.ts
**/*.{ts,tsx,js,jsx}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

Use function declarations instead of default exports

**/*.{ts,tsx,js,jsx}: Prefer static imports over dynamic import(); only use dynamic imports when resolving circular dependencies, enabling real code splitting, or conditionally loading a module at runtime.
Always import from @trigger.dev/sdk; never use @trigger.dev/sdk/v3 or the deprecated client.defineJob.

Files:

  • apps/webapp/server.ts
**/*.ts

📄 CodeRabbit inference engine (.cursor/rules/otel-metrics.mdc)

**/*.ts: When creating or editing OTEL metrics (counters, histograms, gauges), ensure metric attributes have low cardinality by using only enums, booleans, bounded error codes, or bounded shard IDs
Do not use high-cardinality attributes in OTEL metrics such as UUIDs/IDs (envId, userId, runId, projectId, organizationId), unbounded integers (itemCount, batchSize, retryCount), timestamps (createdAt, startTime), or free-form strings (errorMessage, taskName, queueName)
When exporting OTEL metrics via OTLP to Prometheus, be aware that the exporter automatically adds unit suffixes to metric names (e.g., 'my_duration_ms' becomes 'my_duration_ms_milliseconds', 'my_counter' becomes 'my_counter_total'). Account for these transformations when writing Grafana dashboards or Prometheus queries

Files:

  • apps/webapp/server.ts
apps/webapp/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/webapp.mdc)

apps/webapp/**/*.{ts,tsx}: Access environment variables through the env export of env.server.ts instead of directly accessing process.env
Use subpath exports from @trigger.dev/core package instead of importing from the root @trigger.dev/core path

Always use findFirst instead of findUnique for Prisma queries.

Files:

  • apps/webapp/server.ts
🧠 Learnings (12)
📚 Learning: 2026-03-22T13:26:12.060Z
Learnt from: ericallam
Repo: triggerdotdev/trigger.dev PR: 3244
File: apps/webapp/app/components/code/TextEditor.tsx:81-86
Timestamp: 2026-03-22T13:26:12.060Z
Learning: In the triggerdotdev/trigger.dev codebase, do not flag `navigator.clipboard.writeText(...)` calls for `missing-await`/`unhandled-promise` issues. These clipboard writes are intentionally invoked without `await` and without `catch` handlers across the project; keep that behavior consistent when reviewing TypeScript/TSX files (e.g., usages like in `apps/webapp/app/components/code/TextEditor.tsx`).

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-03-22T19:24:14.403Z
Learnt from: matt-aitken
Repo: triggerdotdev/trigger.dev PR: 3187
File: apps/webapp/app/v3/services/alerts/deliverErrorGroupAlert.server.ts:200-204
Timestamp: 2026-03-22T19:24:14.403Z
Learning: In the triggerdotdev/trigger.dev codebase, webhook URLs are not expected to contain embedded credentials/secrets (e.g., fields like `ProjectAlertWebhookProperties` should only hold credential-free webhook endpoints). During code review, if you see logging or inclusion of raw webhook URLs in error messages, do not automatically treat it as a credential-leak/secrets-in-logs issue by default—first verify the URL does not contain embedded credentials (for example, no username/password in the URL, no obvious secret/token query params or fragments). If the URL is credential-free per this project’s conventions, allow the logging.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-05-18T08:21:27.694Z
Learnt from: d-cs
Repo: triggerdotdev/trigger.dev PR: 3632
File: apps/webapp/sentry.server.ts:4-21
Timestamp: 2026-05-18T08:21:27.694Z
Learning: When handling Prisma error P1001 ("Can't reach database server") in TypeScript, don’t assume a single error shape. Prisma can surface P1001 via two different error classes/fields: `PrismaClientKnownRequestError` exposes it as `err.code === "P1001"` (common during mid-query connection drops), while `PrismaClientInitializationError` exposes it as `err.errorCode === "P1001"` (common on client startup failure). Therefore, predicates should use `err.code === "P1001" || err.errorCode === "P1001"`. Do not flag `err.code === "P1001"` as “unreachable/never matches,” as it is expected in production.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-05-18T08:21:27.694Z
Learnt from: d-cs
Repo: triggerdotdev/trigger.dev PR: 3632
File: apps/webapp/sentry.server.ts:4-21
Timestamp: 2026-05-18T08:21:27.694Z
Learning: When handling Prisma errors for P1001 ("Can't reach database server"), do not assume it only appears under a single property name. Prisma may surface P1001 via either `PrismaClientKnownRequestError` (`err.code === "P1001"`, e.g., mid-query connection drops) or `PrismaClientInitializationError` (`err.errorCode === "P1001"`, e.g., client startup connection failure). To reliably detect the condition, check `err.code === "P1001" || err.errorCode === "P1001"`, and avoid review rules that would incorrectly flag `err.code === "P1001"` as unreachable/never-matching.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-13T19:53:13.759Z
Learnt from: ericallam
Repo: triggerdotdev/trigger.dev PR: 3937
File: packages/trigger-sdk/skills/realtime-and-frontend/SKILL.md:258-260
Timestamp: 2026-06-13T19:53:13.759Z
Learning: When reviewing code that uses `trigger.dev/react-hooks`’s `useRealtimeRun`, preserve the call signature where the first argument is the full realtime handle object (not `handle.id`). This is intentional to maintain type-safety and is consistent with the official docs; do not suggest changing the first argument from the handle object to `handle.id`.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-17T17:13:49.929Z
Learnt from: matt-aitken
Repo: triggerdotdev/trigger.dev PR: 3948
File: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.bulk-actions.$bulkActionParam/route.tsx:48-62
Timestamp: 2026-06-17T17:13:49.929Z
Learning: In triggerdotdev/trigger.dev, within `dashboardLoader`/`dashboardAction` (or similar context resolver code) whenever you resolve an organization ID from an organization slug for RBAC/enterprise authorization scope, always read from the primary Prisma client (`prisma`), not `$replica`. Using `$replica` can hit replica-lag and cause the RBAC lookup/authorization to run without the correct org scope (bypassing intended role enforcement). Implement the slug→org lookup with `prisma.organization.findFirst(...)` (or equivalent primary-client query) and add an inline comment documenting why the primary client is required (replica lag could lead to unscoped RBAC checks).

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-23T13:04:21.413Z
Learnt from: carderne
Repo: triggerdotdev/trigger.dev PR: 4023
File: apps/webapp/app/services/upsertBranch.server.ts:14-18
Timestamp: 2026-06-23T13:04:21.413Z
Learning: In TypeScript, it’s valid to `import { type X }` and then use `typeof X` in a type-only position, e.g. `type Alias = z.infer<typeof X>`. The `type` modifier suppresses the runtime import, but the type checker still has the full exported type so `z.infer<typeof X>` can resolve correctly. In code reviews, don’t flag this as a TypeScript compile error as long as `typeof X` is used in a type context (e.g., with `z.infer`, `type` aliases, generics), not as a runtime value.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-05-12T21:04:05.815Z
Learnt from: ericallam
Repo: triggerdotdev/trigger.dev PR: 3542
File: apps/webapp/app/components/sessions/v1/SessionStatus.tsx:1-3
Timestamp: 2026-05-12T21:04:05.815Z
Learning: In this Remix + TypeScript codebase, do not flag a server/client boundary violation when a file imports only types from a module matching `*.server`.

Specifically, it’s safe to import types using `import type { Foo } from "*.server"` or `import { type Foo } from "*.server"` because TypeScript erases type-only imports at compile time and they emit no JavaScript, so they won’t cross the Remix server/client bundle boundary.

Only raise the boundary concern for value imports (e.g., `import { Foo }` without `type`, or `import Foo`), since those produce JavaScript output.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-25T18:21:51.905Z
Learnt from: carderne
Repo: triggerdotdev/trigger.dev PR: 4039
File: apps/webapp/app/routes/invite-revoke.tsx:0-0
Timestamp: 2026-06-25T18:21:51.905Z
Learning: During the Zod v4 migration in the triggerdotdev/trigger.dev webapp, ensure any imports from `conform-to/zod` use the Zod-4 subpath: `conform-to/zod/v4` (e.g., `import { parseWithZod } from "conform-to/zod/v4"`). Do not import from the package root `conform-to/zod`, because it is the Zod 3 implementation and may load Zod-3-only symbols (e.g., `ZodBranded`, `ZodEffects`), which can throw at module load (notably with `zod4.4.3`). This should be enforced across `apps/webapp/**/*` where helpers like `parseWithZod` and `conformZodMessage` are used.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-07-03T17:10:21.498Z
Learnt from: 0ski
Repo: triggerdotdev/trigger.dev PR: 4148
File: apps/webapp/app/models/orgMember.server.ts:149-168
Timestamp: 2026-07-03T17:10:21.498Z
Learning: In triggerdotdev/trigger.dev, `User.email` (Prisma schema: `internal-packages/database/prisma/schema.prisma`) currently does NOT use `citext` and does NOT have a `lower(email)` functional unique index. Therefore, do not introduce Prisma queries like `where: { email: { equals: <value>, mode: "insensitive" } }` (or any case-insensitive lookup) against `User.email`, because it can force sequential scans of the `users` table under load. During review, ensure email is normalized (e.g., lowercased/trimmed) before both writes and subsequent lookups, and if true case-insensitive behavior/uniqueness is required, implement it via a separate app-wide migration (e.g., switch to `citext` and/or add a functional unique index with backfill) rather than bolting it onto individual feature PRs.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-04T18:16:35.386Z
Learnt from: nicktrn
Repo: triggerdotdev/trigger.dev PR: 3836
File: apps/supervisor/src/backpressure/backpressureMonitor.ts:3-5
Timestamp: 2026-06-04T18:16:35.386Z
Learning: When reviewing TypeScript in this repo, apply the rule “prefer type aliases over interfaces” only to data/object shapes and union/intersection type modeling. If an interface is being used as a behavioral contract for collaborators to implement (e.g., method-shape interfaces that define required behavior, such as `BackpressureLogger` / `BackpressureSignalSource` in `apps/supervisor/src/backpressure/backpressureMonitor.ts`), keep it as an `interface` and do not flag it as a type-alias-vs-interface violation.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-09T17:58:04.699Z
Learnt from: 0ski
Repo: triggerdotdev/trigger.dev PR: 3879
File: apps/webapp/app/models/vercelIntegration.server.ts:619-630
Timestamp: 2026-06-09T17:58:04.699Z
Learning: In this codebase, outbound raw `fetch` calls should typically rely on Node/undici’s default request timeout (about ~300s) rather than adding a per-call `AbortController` + `setTimeout` wrapper inside individual functions (e.g. in files like `apps/webapp/app/models/vercelIntegration.server.ts`). During code review, do not flag the absence of a per-call timeout on a single `fetch` as an issue; if per-call timeouts are needed, they should be implemented via a codebase-wide convention (e.g., a shared fetch wrapper or documented pattern) rather than ad-hoc per-function changes.

Applied to files:

  • apps/webapp/server.ts
🪛 ast-grep (0.44.1)
apps/webapp/server.ts

[warning] 107-107: Express application should use Helmet
Context: express()
Note: [CWE-693] Protection Mechanism Failure (Express app without Helmet security headers).

(missing-helmet-typescript)

🔇 Additional comments (7)
apps/webapp/server.ts (7)

4-10: LGTM!

Also applies to: 77-82


101-107: LGTM!


117-135: LGTM!


225-246: LGTM!


264-277: LGTM!


321-323: LGTM!


152-162: 🎯 Functional Correctness

Remove this check The production build path already matches apps/webapp/vite.config.ts (serverBuildFile: "index.mjs"), so build/server/index.mjs is the expected import target.

			> Likely an incorrect or invalid review comment.

Walkthrough

The webapp build and development server now use Vite configuration, middleware, asset serving, and dynamic Remix build loading. OAuth redirect cookies are centralized by provider. Several API routes explicitly export action and loader handlers, and run metadata routing is shared through a new helper with database and buffered fallbacks. Dynamic imports and CommonJS interop are adjusted for Vite and ESM environments. Logging, metrics, stylesheet imports, dependencies, and Docker healthcheck values are also updated.

🚥 Pre-merge checks | ✅ 3 | ❌ 2

❌ Failed checks (2 warnings)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description summarizes the change and testing, but it misses required template sections like Closes #, the checklist, Testing, Changelog, and Screenshots headings. Add the missing template sections and headings, including Closes #, the checklist items, a Testing section, Changelog, and Screenshots.
Docstring Coverage ⚠️ Warning Docstring coverage is 33.33% which is insufficient. The required threshold is 80.00%. Write docstrings for the functions missing them to satisfy the coverage threshold.
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title is concise and accurately summarizes the main change: migrating the webapp from Remix compiler to Vite.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
📝 Generate docstrings
  • Create stacked PR
  • Commit on current branch
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch chore/vite-migration

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@kathiekiwi kathiekiwi changed the title chore(webapp): migrate from the classic Remix compiler to Vite chore(webapp): migrate from Remix compiler to Vite Jul 8, 2026
devin-ai-integration[bot]

This comment was marked as resolved.

@pkg-pr-new

pkg-pr-new Bot commented Jul 8, 2026

Copy link
Copy Markdown

Open in StackBlitz

@trigger.dev/build

npm i https://pkg.pr.new/@trigger.dev/build@653cb43

trigger.dev

npm i https://pkg.pr.new/trigger.dev@653cb43

@trigger.dev/core

npm i https://pkg.pr.new/@trigger.dev/core@653cb43

@trigger.dev/python

npm i https://pkg.pr.new/@trigger.dev/python@653cb43

@trigger.dev/react-hooks

npm i https://pkg.pr.new/@trigger.dev/react-hooks@653cb43

@trigger.dev/redis-worker

npm i https://pkg.pr.new/@trigger.dev/redis-worker@653cb43

@trigger.dev/rsc

npm i https://pkg.pr.new/@trigger.dev/rsc@653cb43

@trigger.dev/schema-to-json

npm i https://pkg.pr.new/@trigger.dev/schema-to-json@653cb43

@trigger.dev/sdk

npm i https://pkg.pr.new/@trigger.dev/sdk@653cb43

commit: 653cb43

coderabbitai[bot]

This comment was marked as resolved.

@kathiekiwi kathiekiwi marked this pull request as ready for review July 8, 2026 08:21
devin-ai-integration[bot]

This comment was marked as resolved.

Base automatically changed from chore/tw4 to main July 8, 2026 13:11
@kathiekiwi kathiekiwi force-pushed the chore/vite-migration branch from e93b7df to 5a4d562 Compare July 8, 2026 13:30
devin-ai-integration[bot]

This comment was marked as resolved.

devin-ai-integration[bot]

This comment was marked as resolved.

@trigger-dot-bot

trigger-dot-bot Bot commented Jul 8, 2026

Copy link
Copy Markdown

Preview Deployment

Status Preview Commit Updated
🟢 Ready chore-vite-migration.triggerlabs.dev 9aadad2 Jul 12, 05:05 UTC

@kathiekiwi kathiekiwi force-pushed the chore/vite-migration branch from 7d9ea5b to bad78e6 Compare July 11, 2026 21:28

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (1)
apps/webapp/server.ts (1)

108-108: 🔒 Security & Privacy | 🔵 Trivial | ⚡ Quick win

Consider adding Helmet for baseline security headers.

Static analysis flags the express() app as lacking Helmet-style security headers. Not introduced by this diff, but since this file is being substantially reworked, it's a good opportunity to add it.

🛡️ Suggested addition
+import helmet from "helmet";
+
 const app = express();
+app.use(helmet());

Source: Linters/SAST tools


ℹ️ Review info
⚙️ Run configuration

Configuration used: Repository UI

Review profile: CHILL

Plan: Pro

Run ID: 80b648a2-46e0-4898-a1fb-886c5ffcfb6d

📥 Commits

Reviewing files that changed from the base of the PR and between 7d9ea5b and bad78e6.

⛔ Files ignored due to path filters (1)
  • pnpm-lock.yaml is excluded by !**/pnpm-lock.yaml
📒 Files selected for processing (35)
  • .changeset/vite-ignore-optional-imports.md
  • apps/webapp/app/components/primitives/Avatar.tsx
  • apps/webapp/app/presenters/v3/UsagePresenter.server.ts
  • apps/webapp/app/root.tsx
  • apps/webapp/app/routes/api.v1.errors.$errorId.ignore.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.resolve.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.unresolve.ts
  • apps/webapp/app/routes/api.v1.idempotencyKeys.$key.reset.ts
  • apps/webapp/app/routes/api.v1.orgs.$orgParam.projects.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.concurrency.override.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.concurrency.reset.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.pause.ts
  • apps/webapp/app/routes/api.v1.runs.$runId.metadata.ts
  • apps/webapp/app/routes/api.v1.sessions.$sessionId.snapshot-url.ts
  • apps/webapp/app/routes/auth.github.callback.tsx
  • apps/webapp/app/routes/auth.github.ts
  • apps/webapp/app/routes/auth.google.callback.tsx
  • apps/webapp/app/routes/auth.google.ts
  • apps/webapp/app/services/redirectCookies.server.ts
  • apps/webapp/app/tailwind.css
  • apps/webapp/app/utils/reloadingRegistry.server.ts
  • apps/webapp/app/v3/mollifier/routeOperationsToRun.server.ts
  • apps/webapp/app/v3/querySchemas.ts
  • apps/webapp/package.json
  • apps/webapp/remix.config.js
  • apps/webapp/remix.env.d.ts
  • apps/webapp/server.ts
  • apps/webapp/test/metadataRouteOperationsLogging.test.ts
  • apps/webapp/vite.config.ts
  • apps/webapp/vite/node-globals-shim.js
  • docker/docker-compose.yml
  • internal-packages/rbac/src/index.ts
  • internal-packages/run-engine/src/engine/locking.ts
  • internal-packages/sso/src/index.ts
  • packages/trigger-sdk/src/v3/aiAutoTelemetry.ts
💤 Files with no reviewable changes (2)
  • apps/webapp/remix.config.js
  • apps/webapp/app/tailwind.css
✅ Files skipped from review due to trivial changes (7)
  • apps/webapp/remix.env.d.ts
  • .changeset/vite-ignore-optional-imports.md
  • apps/webapp/app/routes/api.v1.sessions.$sessionId.snapshot-url.ts
  • apps/webapp/app/routes/api.v1.orgs.$orgParam.projects.ts
  • internal-packages/rbac/src/index.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.resolve.ts
  • apps/webapp/app/components/primitives/Avatar.tsx
🚧 Files skipped from review as they are similar to previous changes (25)
  • apps/webapp/app/routes/auth.google.callback.tsx
  • apps/webapp/app/routes/auth.github.callback.tsx
  • apps/webapp/app/presenters/v3/UsagePresenter.server.ts
  • apps/webapp/test/metadataRouteOperationsLogging.test.ts
  • internal-packages/sso/src/index.ts
  • apps/webapp/app/routes/auth.google.ts
  • apps/webapp/app/utils/reloadingRegistry.server.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.ignore.ts
  • apps/webapp/app/routes/api.v1.idempotencyKeys.$key.reset.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.concurrency.override.ts
  • apps/webapp/app/services/redirectCookies.server.ts
  • apps/webapp/vite/node-globals-shim.js
  • apps/webapp/app/routes/api.v1.queues.$queueParam.pause.ts
  • apps/webapp/app/root.tsx
  • apps/webapp/app/v3/querySchemas.ts
  • apps/webapp/vite.config.ts
  • apps/webapp/app/routes/api.v1.errors.$errorId.unresolve.ts
  • packages/trigger-sdk/src/v3/aiAutoTelemetry.ts
  • apps/webapp/app/routes/auth.github.ts
  • apps/webapp/package.json
  • apps/webapp/app/routes/api.v1.runs.$runId.metadata.ts
  • apps/webapp/app/routes/api.v1.queues.$queueParam.concurrency.reset.ts
  • docker/docker-compose.yml
  • internal-packages/run-engine/src/engine/locking.ts
  • apps/webapp/app/v3/mollifier/routeOperationsToRun.server.ts
📜 Review details
⏰ Context from checks skipped due to timeout. (30)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (6, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (4, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (7, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (3, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (10, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (9, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (5, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (1, 10)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (8, 10)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (8, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (9, 12)
  • GitHub Check: webapp / 🧪 Unit Tests: Webapp (2, 10)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (5, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (3, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (4, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (12, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (2, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (7, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (11, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (6, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (10, 12)
  • GitHub Check: internal / 🧪 Unit Tests: Internal (1, 12)
  • GitHub Check: typecheck / typecheck
  • GitHub Check: packages / 🧪 Unit Tests: Packages (3, 3)
  • GitHub Check: e2e / 🧪 CLI v3 tests (warp-windows-latest-x64-4x - npm)
  • GitHub Check: e2e-webapp / 🧪 E2E Tests: Webapp
  • GitHub Check: packages / 🧪 Unit Tests: Packages (2, 3)
  • GitHub Check: packages / 🧪 Unit Tests: Packages (1, 3)
  • GitHub Check: e2e / 🧪 CLI v3 tests (warp-windows-latest-x64-4x - pnpm)
  • GitHub Check: 🛡️ E2E Auth Tests (full)
🧰 Additional context used
📓 Path-based instructions (5)
**/*.{ts,tsx}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

**/*.{ts,tsx}: Use types over interfaces for TypeScript
Avoid using enums; prefer string unions or const objects instead

Files:

  • apps/webapp/server.ts
{packages/core,apps/webapp}/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

Use zod for validation in packages/core and apps/webapp

Files:

  • apps/webapp/server.ts
**/*.{ts,tsx,js,jsx}

📄 CodeRabbit inference engine (.github/copilot-instructions.md)

Use function declarations instead of default exports

**/*.{ts,tsx,js,jsx}: Prefer static imports over dynamic import(); only use dynamic imports when resolving circular dependencies, enabling real code splitting, or conditionally loading a module at runtime.
Always import from @trigger.dev/sdk; never use @trigger.dev/sdk/v3 or the deprecated client.defineJob.

Files:

  • apps/webapp/server.ts
**/*.ts

📄 CodeRabbit inference engine (.cursor/rules/otel-metrics.mdc)

**/*.ts: When creating or editing OTEL metrics (counters, histograms, gauges), ensure metric attributes have low cardinality by using only enums, booleans, bounded error codes, or bounded shard IDs
Do not use high-cardinality attributes in OTEL metrics such as UUIDs/IDs (envId, userId, runId, projectId, organizationId), unbounded integers (itemCount, batchSize, retryCount), timestamps (createdAt, startTime), or free-form strings (errorMessage, taskName, queueName)
When exporting OTEL metrics via OTLP to Prometheus, be aware that the exporter automatically adds unit suffixes to metric names (e.g., 'my_duration_ms' becomes 'my_duration_ms_milliseconds', 'my_counter' becomes 'my_counter_total'). Account for these transformations when writing Grafana dashboards or Prometheus queries

Files:

  • apps/webapp/server.ts
apps/webapp/**/*.{ts,tsx}

📄 CodeRabbit inference engine (.cursor/rules/webapp.mdc)

apps/webapp/**/*.{ts,tsx}: Access environment variables through the env export of env.server.ts instead of directly accessing process.env
Use subpath exports from @trigger.dev/core package instead of importing from the root @trigger.dev/core path

Always use findFirst instead of findUnique for Prisma queries.

Files:

  • apps/webapp/server.ts
🧠 Learnings (12)
📚 Learning: 2026-03-22T13:26:12.060Z
Learnt from: ericallam
Repo: triggerdotdev/trigger.dev PR: 3244
File: apps/webapp/app/components/code/TextEditor.tsx:81-86
Timestamp: 2026-03-22T13:26:12.060Z
Learning: In the triggerdotdev/trigger.dev codebase, do not flag `navigator.clipboard.writeText(...)` calls for `missing-await`/`unhandled-promise` issues. These clipboard writes are intentionally invoked without `await` and without `catch` handlers across the project; keep that behavior consistent when reviewing TypeScript/TSX files (e.g., usages like in `apps/webapp/app/components/code/TextEditor.tsx`).

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-03-22T19:24:14.403Z
Learnt from: matt-aitken
Repo: triggerdotdev/trigger.dev PR: 3187
File: apps/webapp/app/v3/services/alerts/deliverErrorGroupAlert.server.ts:200-204
Timestamp: 2026-03-22T19:24:14.403Z
Learning: In the triggerdotdev/trigger.dev codebase, webhook URLs are not expected to contain embedded credentials/secrets (e.g., fields like `ProjectAlertWebhookProperties` should only hold credential-free webhook endpoints). During code review, if you see logging or inclusion of raw webhook URLs in error messages, do not automatically treat it as a credential-leak/secrets-in-logs issue by default—first verify the URL does not contain embedded credentials (for example, no username/password in the URL, no obvious secret/token query params or fragments). If the URL is credential-free per this project’s conventions, allow the logging.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-05-18T08:21:27.694Z
Learnt from: d-cs
Repo: triggerdotdev/trigger.dev PR: 3632
File: apps/webapp/sentry.server.ts:4-21
Timestamp: 2026-05-18T08:21:27.694Z
Learning: When handling Prisma error P1001 ("Can't reach database server") in TypeScript, don’t assume a single error shape. Prisma can surface P1001 via two different error classes/fields: `PrismaClientKnownRequestError` exposes it as `err.code === "P1001"` (common during mid-query connection drops), while `PrismaClientInitializationError` exposes it as `err.errorCode === "P1001"` (common on client startup failure). Therefore, predicates should use `err.code === "P1001" || err.errorCode === "P1001"`. Do not flag `err.code === "P1001"` as “unreachable/never matches,” as it is expected in production.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-05-18T08:21:27.694Z
Learnt from: d-cs
Repo: triggerdotdev/trigger.dev PR: 3632
File: apps/webapp/sentry.server.ts:4-21
Timestamp: 2026-05-18T08:21:27.694Z
Learning: When handling Prisma errors for P1001 ("Can't reach database server"), do not assume it only appears under a single property name. Prisma may surface P1001 via either `PrismaClientKnownRequestError` (`err.code === "P1001"`, e.g., mid-query connection drops) or `PrismaClientInitializationError` (`err.errorCode === "P1001"`, e.g., client startup connection failure). To reliably detect the condition, check `err.code === "P1001" || err.errorCode === "P1001"`, and avoid review rules that would incorrectly flag `err.code === "P1001"` as unreachable/never-matching.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-13T19:53:13.759Z
Learnt from: ericallam
Repo: triggerdotdev/trigger.dev PR: 3937
File: packages/trigger-sdk/skills/realtime-and-frontend/SKILL.md:258-260
Timestamp: 2026-06-13T19:53:13.759Z
Learning: When reviewing code that uses `trigger.dev/react-hooks`’s `useRealtimeRun`, preserve the call signature where the first argument is the full realtime handle object (not `handle.id`). This is intentional to maintain type-safety and is consistent with the official docs; do not suggest changing the first argument from the handle object to `handle.id`.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-17T17:13:49.929Z
Learnt from: matt-aitken
Repo: triggerdotdev/trigger.dev PR: 3948
File: apps/webapp/app/routes/_app.orgs.$organizationSlug.projects.$projectParam.env.$envParam.bulk-actions.$bulkActionParam/route.tsx:48-62
Timestamp: 2026-06-17T17:13:49.929Z
Learning: In triggerdotdev/trigger.dev, within `dashboardLoader`/`dashboardAction` (or similar context resolver code) whenever you resolve an organization ID from an organization slug for RBAC/enterprise authorization scope, always read from the primary Prisma client (`prisma`), not `$replica`. Using `$replica` can hit replica-lag and cause the RBAC lookup/authorization to run without the correct org scope (bypassing intended role enforcement). Implement the slug→org lookup with `prisma.organization.findFirst(...)` (or equivalent primary-client query) and add an inline comment documenting why the primary client is required (replica lag could lead to unscoped RBAC checks).

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-23T13:04:21.413Z
Learnt from: carderne
Repo: triggerdotdev/trigger.dev PR: 4023
File: apps/webapp/app/services/upsertBranch.server.ts:14-18
Timestamp: 2026-06-23T13:04:21.413Z
Learning: In TypeScript, it’s valid to `import { type X }` and then use `typeof X` in a type-only position, e.g. `type Alias = z.infer<typeof X>`. The `type` modifier suppresses the runtime import, but the type checker still has the full exported type so `z.infer<typeof X>` can resolve correctly. In code reviews, don’t flag this as a TypeScript compile error as long as `typeof X` is used in a type context (e.g., with `z.infer`, `type` aliases, generics), not as a runtime value.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-05-12T21:04:05.815Z
Learnt from: ericallam
Repo: triggerdotdev/trigger.dev PR: 3542
File: apps/webapp/app/components/sessions/v1/SessionStatus.tsx:1-3
Timestamp: 2026-05-12T21:04:05.815Z
Learning: In this Remix + TypeScript codebase, do not flag a server/client boundary violation when a file imports only types from a module matching `*.server`.

Specifically, it’s safe to import types using `import type { Foo } from "*.server"` or `import { type Foo } from "*.server"` because TypeScript erases type-only imports at compile time and they emit no JavaScript, so they won’t cross the Remix server/client bundle boundary.

Only raise the boundary concern for value imports (e.g., `import { Foo }` without `type`, or `import Foo`), since those produce JavaScript output.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-25T18:21:51.905Z
Learnt from: carderne
Repo: triggerdotdev/trigger.dev PR: 4039
File: apps/webapp/app/routes/invite-revoke.tsx:0-0
Timestamp: 2026-06-25T18:21:51.905Z
Learning: During the Zod v4 migration in the triggerdotdev/trigger.dev webapp, ensure any imports from `conform-to/zod` use the Zod-4 subpath: `conform-to/zod/v4` (e.g., `import { parseWithZod } from "conform-to/zod/v4"`). Do not import from the package root `conform-to/zod`, because it is the Zod 3 implementation and may load Zod-3-only symbols (e.g., `ZodBranded`, `ZodEffects`), which can throw at module load (notably with `zod4.4.3`). This should be enforced across `apps/webapp/**/*` where helpers like `parseWithZod` and `conformZodMessage` are used.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-07-03T17:10:21.498Z
Learnt from: 0ski
Repo: triggerdotdev/trigger.dev PR: 4148
File: apps/webapp/app/models/orgMember.server.ts:149-168
Timestamp: 2026-07-03T17:10:21.498Z
Learning: In triggerdotdev/trigger.dev, `User.email` (Prisma schema: `internal-packages/database/prisma/schema.prisma`) currently does NOT use `citext` and does NOT have a `lower(email)` functional unique index. Therefore, do not introduce Prisma queries like `where: { email: { equals: <value>, mode: "insensitive" } }` (or any case-insensitive lookup) against `User.email`, because it can force sequential scans of the `users` table under load. During review, ensure email is normalized (e.g., lowercased/trimmed) before both writes and subsequent lookups, and if true case-insensitive behavior/uniqueness is required, implement it via a separate app-wide migration (e.g., switch to `citext` and/or add a functional unique index with backfill) rather than bolting it onto individual feature PRs.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-04T18:16:35.386Z
Learnt from: nicktrn
Repo: triggerdotdev/trigger.dev PR: 3836
File: apps/supervisor/src/backpressure/backpressureMonitor.ts:3-5
Timestamp: 2026-06-04T18:16:35.386Z
Learning: When reviewing TypeScript in this repo, apply the rule “prefer type aliases over interfaces” only to data/object shapes and union/intersection type modeling. If an interface is being used as a behavioral contract for collaborators to implement (e.g., method-shape interfaces that define required behavior, such as `BackpressureLogger` / `BackpressureSignalSource` in `apps/supervisor/src/backpressure/backpressureMonitor.ts`), keep it as an `interface` and do not flag it as a type-alias-vs-interface violation.

Applied to files:

  • apps/webapp/server.ts
📚 Learning: 2026-06-09T17:58:04.699Z
Learnt from: 0ski
Repo: triggerdotdev/trigger.dev PR: 3879
File: apps/webapp/app/models/vercelIntegration.server.ts:619-630
Timestamp: 2026-06-09T17:58:04.699Z
Learning: In this codebase, outbound raw `fetch` calls should typically rely on Node/undici’s default request timeout (about ~300s) rather than adding a per-call `AbortController` + `setTimeout` wrapper inside individual functions (e.g. in files like `apps/webapp/app/models/vercelIntegration.server.ts`). During code review, do not flag the absence of a per-call timeout on a single `fetch` as an issue; if per-call timeouts are needed, they should be implemented via a codebase-wide convention (e.g., a shared fetch wrapper or documented pattern) rather than ad-hoc per-function changes.

Applied to files:

  • apps/webapp/server.ts
🪛 ast-grep (0.44.1)
apps/webapp/server.ts

[warning] 107-107: Express application should use Helmet
Context: express()
Note: [CWE-693] Protection Mechanism Failure (Express app without Helmet security headers).

(missing-helmet-typescript)

🔇 Additional comments (6)
apps/webapp/server.ts (6)

10-10: LGTM!

Also applies to: 77-82


101-107: LGTM!


152-162: 🩺 Stability & Availability

build/loadBuild wiring matches the official Remix Vite pattern; one subtlety worth double-checking for the socket/wss singletons.

The build: viteDevServer ? loadBuild : build wiring at Lines 229 and 242 mirrors the documented request-handler build option, which loads the module via ssrLoadModule when a Vite dev server is present and via a static import otherwise, so the pattern itself is sound.

However, the comment at Line 161 notes build (from the very first loadBuild() call) is used to extract long-lived singletons (socketIo, wss, rate limiters) that are then attached to the HTTP server at Line 280. In dev mode, every subsequent request re-invokes loadBuild()viteDevServer.ssrLoadModule(...). If a file change causes Vite to invalidate the module graph for the server build (or any of its transitive imports, including entry.server.ts), a documented Vite limitation is that a module loaded with ssrLoadModule that is invalidated is evicted from the module graph but isn't cleaned up, and resources created in the old module such as websocket servers can stick around. That could mean the socketIo/wss instances attached to the live HTTP server drift out of sync with whatever module instance Remix loaders/actions reference on the next reload. This is dev-only and may already be an accepted tradeoff (or mitigated via a full server restart on server-file changes), but worth confirming given this PR explicitly calls out websocket connectivity testing.

Also applies to: 229-229, 242-242


253-254: LGTM!


319-320: LGTM!


117-135: 🩺 Stability & Availability

No follow-up needed vite is a devDependency, and the webapp start path plus container image already set NODE_ENV=production, so this remains a dev-only path.

Workspace packages resolve to TS source via the @triggerdotdev/source
condition; server.ts keeps the Express/cluster/ws wiring with vite
middleware in dev and the ESM server bundle in prod. Fixes surfaced by
the stricter ESM pipeline: destructured route exports, server-only
imports in routes/components, CJS interop (redlock, cuid, regression),
browser node-global shims, font asset handling, and a websockets TDZ.
Restores the unit-testable export (removed to satisfy the Vite route
export rules) by extracting the helper out of the route file.
createActionApiRoute's loader handles CORS OPTIONS preflight; the
destructured exports never surfaced it (pre-existing), do it now.
@kathiekiwi kathiekiwi force-pushed the chore/vite-migration branch from bad78e6 to 653cb43 Compare July 12, 2026 03:44
coderabbitai[bot]

This comment was marked as resolved.

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

Labels

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant