فهرست منبع

Fix one biome error due to line length

arvid-e 6 ماه پیش
والد
کامیت
8c82dd868e
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      apps/app/src/interfaces/activity.ts

+ 2 - 2
apps/app/src/interfaces/activity.ts

@@ -680,8 +680,8 @@ export type ISearchFilter = {
   actions?: SupportedActionType[];
   actions?: SupportedActionType[];
 };
 };
 
 
-
-type SupportedRecentActivityAction = typeof ActivityLogActions[keyof typeof ActivityLogActions];
+type SupportedRecentActivityAction =
+  (typeof ActivityLogActions)[keyof typeof ActivityLogActions];
 
 
 export type IRecentActivitySearchFilter = {
 export type IRecentActivitySearchFilter = {
   actions?: SupportedRecentActivityAction[];
   actions?: SupportedRecentActivityAction[];