Browse Source

Fix one biome error due to line length

arvid-e 7 tháng trước cách đây
mục cha
commit
8c82dd868e
1 tập tin đã thay đổi với 2 bổ sung2 xóa
  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[];
 };
 
-
-type SupportedRecentActivityAction = typeof ActivityLogActions[keyof typeof ActivityLogActions];
+type SupportedRecentActivityAction =
+  (typeof ActivityLogActions)[keyof typeof ActivityLogActions];
 
 export type IRecentActivitySearchFilter = {
   actions?: SupportedRecentActivityAction[];