You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: apps/dashboard/src/app/(app)/team/[team_slug]/[project_slug]/(sidebar)/transactions/tx/[id]/transaction-details-ui.tsx
+22-15Lines changed: 22 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -400,22 +400,29 @@ function ActivityLogCard({
400
400
sortedLogs[sortedLogs.length]=log;
401
401
}
402
402
403
-
// Manual bubble sort using for...of loops
404
-
for(leti=0;i<sortedLogs.length;i++){
405
-
for(letj=0;j<sortedLogs.length-1-i;j++){
406
-
constcurrentLog=sortedLogs[j];
407
-
constnextLog=sortedLogs[j+1];
408
-
403
+
// Manual bubble sort using only for...of loops with manual index tracking
0 commit comments