diff --git a/localenv/mock-account-servicing-entity/app/lib/webhooks.server.ts b/localenv/mock-account-servicing-entity/app/lib/webhooks.server.ts index 3fe242f5d8..7f2a3d215f 100644 --- a/localenv/mock-account-servicing-entity/app/lib/webhooks.server.ts +++ b/localenv/mock-account-servicing-entity/app/lib/webhooks.server.ts @@ -178,9 +178,7 @@ export async function handleWalletAddressNotFound(wh: WebHook) { throw new Error('No walletAddressUrl found') } - const accountPath = walletAddressUrl.split( - `https://${CONFIG.publicHost}/` - )[1] + const accountPath = walletAddressUrl.split(`https://${CONFIG.publicHost}/`)[1] const account = await mockAccounts.getByPath(accountPath) diff --git a/packages/documentation/src/content/docs/integration/deployment.md b/packages/documentation/src/content/docs/integration/deployment.md index 956d2d6d8e..6f5c6df620 100644 --- a/packages/documentation/src/content/docs/integration/deployment.md +++ b/packages/documentation/src/content/docs/integration/deployment.md @@ -159,7 +159,7 @@ Now, the Admin UI can be found on localhost:3010. | `STREAM_SECRET` | 32 random bytes | seed secret to generate connection secrets | | `TIGERBEETLE_CLUSTER_ID` | `0` | TigerBeetle cluster id | | `TIGERBEETLE_REPLICA_ADDRESSES` | `3004` | comma separated IP addresses/ports | -| `TRUST_PROXY` | `false` | flag to use X-Forwarded-Proto header to determine if connections is secure | +| `TRUST_PROXY` | `false` | flag to use X-Forwarded-Proto header to determine if connections is secure | | `USE_TIGERBEETLE` | `false` | flag - use TigerBeetle or Postgres for accounting | | `WEBHOOK_TIMEOUT` | `2000` | milliseconds | | `WEBHOOK_URL` | `http://127.0.0.1:4001/webhook` | endpoint on the Account Servicing Entity that consumes webhook events |