Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions src/logsqueak/tui/screens/content_editing.py
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,6 @@ def action_back(self) -> None:
self._save_current_content()

logger.info("user_action_back_to_phase1")
# TODO: Transition back to Phase 1
self.app.pop_screen()

def _save_current_content(self) -> None:
Expand Down Expand Up @@ -840,11 +839,6 @@ def deduplicate_decisions(new_decisions: list, existing_decisions: list) -> list
exc_info=True
)

async def _page_indexing_worker(self) -> None:
"""Worker: Build page index with progress."""
# TODO: Implement page indexing
pass

async def _rag_search_worker(self) -> None:
"""Worker: Perform RAG search for candidate pages and load page contents.

Expand Down
6 changes: 5 additions & 1 deletion src/logsqueak/tui/screens/integration_review.py
Original file line number Diff line number Diff line change
Expand Up @@ -826,7 +826,11 @@ def action_next_block(self) -> None:
"navigation_blocked_decisions_pending",
next_block_id=next_block_id
)
# TODO: Show user feedback about waiting for decisions
self.app.notify(
"Next block's integration decisions are still being generated. Please wait...",
severity="information",
timeout=3
)
return

# Navigate to next block
Expand Down