فهرست منبع

Fix biome error

arvid-e 7 ماه پیش
والد
کامیت
4ecf1e3a80
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      apps/app/src/features/contribution-graph/utils/contribution-graph-utils.ts

+ 2 - 2
apps/app/src/features/contribution-graph/utils/contribution-graph-utils.ts

@@ -8,8 +8,8 @@ export const getISOWeekId = (date: Date): string => {
 };
 };
 
 
 export const daysSinceLastUpdate = (
 export const daysSinceLastUpdate = (
-    lastUpdateDate: Date,
-    currentDate: Date = new Date(),
+  lastUpdateDate: Date,
+  currentDate: Date = new Date(),
 ): number => {
 ): number => {
   const diffDays = differenceInDays(lastUpdateDate, currentDate);
   const diffDays = differenceInDays(lastUpdateDate, currentDate);
   return Math.max(0, diffDays);
   return Math.max(0, diffDays);