Skip to content
Merged
Changes from 3 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
3 changes: 3 additions & 0 deletions crates/bindings-typescript/src/react/useTable.ts
Original file line number Diff line number Diff line change
Expand Up @@ -205,11 +205,14 @@ export function useTable<TableDef extends UntypedTableDef>(
table.removeOnUpdate?.(onUpdate);
};
},
// TODO: investigating refactoring so that this is no longer necessary, as we have had genuine bugs with missed deps.
// See https://github.com/clockworklabs/SpacetimeDB/pull/4580.
// eslint-disable-next-line react-hooks/exhaustive-deps
Comment thread
bfops marked this conversation as resolved.
[
connectionState,
accessorName,
querySql,
computeSnapshot,
Comment thread
bfops marked this conversation as resolved.
callbacks?.onDelete,
callbacks?.onInsert,
callbacks?.onUpdate,
Expand Down
Loading