Преглед на файлове

Fix one biome error due to line length

arvid-e преди 7 месеца
родител
ревизия
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[];
 };
 
-
-type SupportedRecentActivityAction = typeof ActivityLogActions[keyof typeof ActivityLogActions];
+type SupportedRecentActivityAction =
+  (typeof ActivityLogActions)[keyof typeof ActivityLogActions];
 
 export type IRecentActivitySearchFilter = {
   actions?: SupportedRecentActivityAction[];