fix(CAR-812): correct receipt email format and --env flag parser

- docs: fix email address format to receipts+<token>@receipts.cartsnitch.com
  (per Settings → Receipt Email UI, not the old farh.net domain format)
- docs: fix UI section label from 'Account' to 'Receipt Email'
- scripts/seed-env.sh: fix --env flag parser when called as './seed-env.sh --env uat'
  positional form was already correct; flag form was consuming --env as ENV value

Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
2026-05-04 17:01:21 +00:00
committed by Barcode Betty [agent]
parent d57a90ed59
commit ff1e1351f1
2 changed files with 8 additions and 11 deletions
+4 -2
View File
@@ -22,8 +22,10 @@
set -euo pipefail
# --- Config -------------------------------------------------------------------
ENV="${1:-dev}"
shift || true
ENV="dev"
if [[ "${1:-}" == "dev" || "${1:-}" == "uat" ]]; then
ENV="$1"; shift
fi
while [[ $# -gt 0 ]]; do
case "$1" in