You were working on a feature and — oops — you made your changes directly on main. In Git you'd need git reset, git stash, git checkout -b, git stash pop. In jj, you just bookmark your work and move main back.
Check the log: jj log
Your working copy (@) has the "Add payment integration" change, but it should be on a feature bookmark, not on main. The change "last good main" (wplce01) is where main should be.
● Check the log: `jj log`
○ Create a bookmark where your work is: `jj bookmark create feature/payments`
○ Move @ back to where main should be: `jj new wplce01`
○ Move the main bookmark: `jj bookmark move main`
jj Terminal
📘 Starting tutorial: Wrong Place
Oops — you committed to main instead of a feature branch. jj makes it painless to move.