@industry-theme/github-panels 0.1.36 → 0.1.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2669,7 +2669,7 @@ const OwnerRepositoriesPanelContent = ({
2669
2669
  comparison = a.name.localeCompare(b.name);
2670
2670
  break;
2671
2671
  case "updated":
2672
- comparison = new Date(b.updated_at || 0).getTime() - new Date(a.updated_at || 0).getTime();
2672
+ comparison = new Date(a.updated_at || 0).getTime() - new Date(b.updated_at || 0).getTime();
2673
2673
  break;
2674
2674
  }
2675
2675
  return sortOrder === "asc" ? comparison : -comparison;