Skip to content

Commit

Permalink
Merge pull request #129 from happo/reproduce-missing-interaction
Browse files Browse the repository at this point in the history
Reproduce missing interactions bug
  • Loading branch information
trotzig authored Sep 18, 2024
2 parents 888d8cf + cae43d5 commit b24b582
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/register.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ async function getExamples() {
return result;
}, [])
.sort((a, b) => {
const aCompare = `${a.theme}-${a.storyId}`;
const bCompare = `${b.theme}-${b.storyId}`;
const aCompare = `${a.component}-${a.theme}-${a.storyId}`;
const bCompare = `${b.component}-${b.theme}-${b.storyId}`;
if (aCompare === bCompare) {
return 0;
}
Expand Down

0 comments on commit b24b582

Please sign in to comment.