Block a user
No transactions listed
Investigation Plan:
- Check what transactions exist for customer 1846 (id=1) in DB
- Verify the transaction_date format in DB (DATETIME vs string)
- Debug the transactions query to see if…
Some links result in "Please log in first" even while logged in
Fixed in recent commits. The issue was missing quotation marks in HTML href attributes. Updated server now outputs proper HTML: <a href="/transactions?session={}">. Try clearing browser cache…
Customer Web Portal - Transaction & Invoice Viewer
Running the application appears to require the command to be given twice
Fixed in PR #4 - Commit: 460bb46
The issue was in remove_env_flags() at src/main.rs:264 which returned index 0 when no --env flag was present, incorrectly skipping the first argument (program…
Fix: CLI generate command works with single invocation
Running the application appears to require the command to be given twice
Root Cause Analysis
The bug is in src/main.rs:264-276 in the remove_env_flags function.
How it works:
parse_env_flag(lines 245-258) looks for--envand returns(Env, index)-…