Fix app.tsx import formatting from the CL-6372 rebase - #120
Merged
Merged
Conversation
The toast-consolidation rebase (PR #117) left the routes import unwrapped after resolving a conflict against the /login redirect work; prettier --write wraps it back to the repo's line width.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Follow-up to #117 (CL-6372: one toast system). Rebasing that branch
onto main's
/loginredirect work (#113) left the./routesimportin
apps/web/src/app.tsxunwrapped after resolving the mergeconflict, which broke `prettier --check` on main's CI. PR #117 was
merged before this formatting fix could be pushed.
Fix
`prettier --write apps/web/src/app.tsx` — wraps the import back to
the repo's line width. No behavior change.
Note: main's lint check also currently fails on unrelated files
(`apps/web/test/login-routing.test.tsx`, `packages/cli/test/seed.test.ts`,
several `packages/onboarding/test/*.ts` files) and the
`walking-skeleton` e2e job fails on an unrelated workflow-asset push
format error. Both predate this branch and are outside the toast
scope — not touched here.
Test plan