Skip to content

Commit c54caaf

Browse files
committed
Merge conflict
1 parent fd04174 commit c54caaf

File tree

1 file changed

+0
-12
lines changed

1 file changed

+0
-12
lines changed

packages/ui-components/src/postgrest-infinite-scroll.ts

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,6 @@ export function PostgRESTInfiniteScrollView(
6767
const SearchBarToUse = SearchBarComponent ?? SearchBar;
6868
const MultiSelectToUse = MultiSelectComponent ?? MultiSelect;
6969

70-
<<<<<<< HEAD
7170
const orderOperator = ascending ? `asc` : `desc`;
7271
const notOrderOperator1 = ascending ? `desc` : `asc`;
7372
const compOperator = ascending ? `gt` : `lt`;
@@ -84,17 +83,6 @@ export function PostgRESTInfiniteScrollView(
8483
? 0
8584
: 2 ** 28;
8685

87-
=======
88-
const res = useAPIResult(route, { limit: 1 });
89-
const [selectedItems, setSelectedItems] = useState<string[]>(
90-
searchColumns || [],
91-
);
92-
const [filterValue, setFilterValue] = useState<string>("");
93-
const operator1 = ascending ? `asc` : `desc`;
94-
const notOperator1 = ascending ? `desc` : `asc`;
95-
const operator2 = ascending ? `gt` : `lt`;
96-
const notOperator2 = ascending ? `lt` : `gt`;
97-
>>>>>>> cbeb803c45afa609f8dcaa75bbdde83b2d0694f3
9886
const id = ascending ? 0 : maxId;
9987
const notId = ascending ? maxId : 0;
10088
const newInitialItems =

0 commit comments

Comments
 (0)