refactor(daemon): simplify JSONL path comment (#734)

Removes unnecessary parenthetical explanation about possible JSONL file names since findJSONLPath() already encapsulates that logic.

Co-authored-by: Charles P. Cross <cpdata@users.noreply.github.com>
This commit is contained in:
Steve Yegge
2025-12-24 12:38:13 -08:00

View File

@@ -70,7 +70,7 @@ func syncBranchCommitAndPushWithOptions(ctx context.Context, store storage.Stora
}
// Sync JSONL file to worktree
// Get the actual JSONL path (could be issues.jsonl, beads.base.jsonl, etc.)
// Get the actual JSONL path
jsonlPath := findJSONLPath()
if jsonlPath == "" {
return false, fmt.Errorf("JSONL path not found")