style(portal-bff): apply prettier to check-database-url.ts #71
Reference in New Issue
Block a user
Delete Branch "fix/portal-bff/prettier-check-database-url"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Summary
Cosmetic-only follow-up to #70. Collapses one over-cautious multi-line
throw new Error(...)into a single line that fits within the project's 100-charprintWidth.The reformat was produced by lint-staged during the amend that landed #70, but applied to the working tree only — the modification never made it back into the staged content of the amend. The merged commit therefore carries the un-prettified version.
Spotted locally with
pnpm exec prettier --check apps/portal-bff/src/config/check-database-url.tsfailing. Left unchecked, the next PR'scheckjob would break atformat:checkfor unrelated reasons.Test plan
format:checkclean).