Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 0 additions & 2 deletions demo/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@ const pool = new Pool({
const dbProvider = zeroNodePg(schema, pool);

app.post('/zero/query', async c => {
console.log('handling query', {url: c.req.url, method: c.req.method});

const result = await handleQueryRequest(
(name, args) => mustGetQuery(queries, name).fn({args, ctx: {}}),
schema,
Expand Down
7 changes: 0 additions & 7 deletions src/react/use-zero-virtualizer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,13 +134,6 @@ export type UseZeroVirtualizerOptions<
* like URL query parameters.
*/
onSettled?: (() => void) | undefined;

// new temporary API

// Before we navigate away we will save the current scroll state
saveScrollState?:
| ((state: ScrollHistoryState<TStartRow>) => void)
| undefined;
};

const createPermalinkAnchor = (id: string) =>
Expand Down
Loading