issues Search Results · language:Dune language:JavaScript language:Java language:JavaScript linked:pr language:Java
Filter by
3.2M results
Replace the Streamlit UI with a React 18 + Vite + TailwindCSS SPA served by FastAPI.
Setup
- npm create vite@latest ui -- --template react-ts inside src/cqc_lem/ui/
- Install: tailwindcss, @tailwindcss/forms, ...
infrastructure
ui
poster.py (lines 211-217)
The if __name__ == __main__ : block contains:
- Hardcoded ngrok URL: https://cqc-lem-api.ngrok-free.dev/assets?...
- Hardcoded user_id = 60
Fix: Remove the entire if __name__ ...
bug
cleanup
File: src/cqc_lem/utilities/linkedin/poster.py:108
Current logic uses image in media_path and video in media_path — this misclassifies files like
/tmp/my_image_backup.mp4 (returns IMAGE instead of VIDEO). ...
bug
File: src/cqc_lem/app/run_scheduler.py:22
raise ValueError( This is a test error ) is present in production code at the top of a scheduler function. This causes
the task to fail every time it runs.
Fix ...
bug
File: src/cqc_lem/utilities/linkedin/scrapper.py:344
TODO: Fix for when prefix is empty. When prefix is an empty string, the current code causes an index error or incorrect
parsing.
Fix
Add guard before ...
bug
File: src/cqc_lem/utilities/db.py:229
TODO: Add where clause to only return non-expired tokens. The query currently returns all OAuth tokens regardless of
expiry, causing 401 errors when expired tokens ...
bug
File: src/cqc_lem/utilities/ai/ai_helper.py:1785
The function references user_name (line 1799) and analysis (line 1814) which are never defined in scope — this raises
NameError at runtime.
Fix
- The ...
bug
Create tests/integration/test_api.py with FastAPI TestClient tests.
from fastapi.testclient import TestClient
from cqc_lem.api.main import app
client = TestClient(app)
Coverage targets (mock DB and Celery) ...
testing
Replace stub tests in tests/unit/utilities/linkedin/test_scrapper.py with real tests for pure functions (no Selenium
required).
Coverage targets
- source_as_row(element) — mock PageElement.getText() ...
testing

Learn how you can use GitHub Issues to plan and track your work.
Save views for sprints, backlogs, teams, or releases. Rank, sort, and filter issues to suit the occasion. The possibilities are endless.Learn more about GitHub IssuesProTip! Restrict your search to the title by using the in:title qualifier.