Skip to content

Commit

Permalink
Update src/components/ApiHistoryTable.tsx
Browse files Browse the repository at this point in the history
Co-authored-by: David Sanders <[email protected]>
  • Loading branch information
piotrpdev and dsanders11 authored Aug 11, 2024
1 parent e5b2578 commit 60f5457
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/components/ApiHistoryTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,7 @@ function generateTableRow(
type: Change,
change: NonNullable<ApiHistory[keyof ApiHistory]>[0]
) {
const prNumber = Number(change['pr-url'].split('/').at(-1));
const key = prNumber + '-' + type;
const key = change['pr-url'] + '-' + type;

const allVersions: Array<string> = [];

Expand Down

0 comments on commit 60f5457

Please sign in to comment.