فهرست منبع

chore: generate

GitHub Action 8 ماه پیش
والد
کامیت
64f0205f97
2فایلهای تغییر یافته به همراه6 افزوده شده و 5 حذف شده
  1. 1 1
      packages/app/src/components/dialog-select-server.tsx
  2. 5 4
      packages/ui/src/hooks/use-filtered-list.tsx

+ 1 - 1
packages/app/src/components/dialog-select-server.tsx

@@ -118,7 +118,7 @@ export function DialogSelectServer() {
   }
 
   async function handleRemove(url: string) {
-      server.remove(url)
+    server.remove(url)
   }
 
   return (

+ 5 - 4
packages/ui/src/hooks/use-filtered-list.tsx

@@ -24,10 +24,11 @@ export function useFilteredList<T>(props: FilteredListProps<T>) {
   const [grouped, { refetch }] = createResource(
     () => {
       // When items is a function (not async filter function), call it to track changes
-      const itemsValue = typeof props.items === "function" 
-        ? (props.items as () => T[])() // Call synchronous function to track it
-        : props.items
-      
+      const itemsValue =
+        typeof props.items === "function"
+          ? (props.items as () => T[])() // Call synchronous function to track it
+          : props.items
+
       return {
         filter: store.filter,
         items: itemsValue,