Skip to content
Merged
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
2 changes: 1 addition & 1 deletion packages/app/server/api/repo/commits.get.ts
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,7 @@
if (!sha || packageNameParts.length === 0) {
continue;
}
const packageName = packageNameParts.join(":");
const packageName = packageNameParts.join("/");
const uploadedAt = new Date(object.uploaded).getTime();

const row = rows.get(sha);
Expand Down Expand Up @@ -311,7 +311,7 @@
},
};
} catch (error) {
console.error("Error fetching repository releases:", error);

Check warning on line 314 in packages/app/server/api/repo/commits.get.ts

View workflow job for this annotation

GitHub Actions / Run Linting

Unexpected console statement

return {
id: "error",
Expand Down
Loading