Skip to content

Commit ee2c102

Browse files
Merge pull request #93 from cloudflare/fix/chat-delete-messages
chore: fix build errors
2 parents d7835e1 + e7231d1 commit ee2c102

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

packages/core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/realtimekit-ui",
3-
"version": "1.1.0-staging.4",
3+
"version": "1.1.0-staging.5",
44
"description": "Pre-built, ready-to-use UI components and utilities for integrating with Cloudflare RealtimeKit",
55
"main": "dist/index.cjs.js",
66
"module": "dist/index.js",

packages/core/src/components.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2521,10 +2521,10 @@ export namespace Components {
25212521
"onNodeDelete": (id: string) => Promise<void>;
25222522
/**
25232523
* Updates a new node anywhere in the list
2524-
* @param id - The id of the node to update
2525-
* @param node - The updated data node
2524+
* @param _id - The id of the node to update
2525+
* @param _node - The updated data node
25262526
*/
2527-
"onNodeUpdate": (id: string, node: DataNode) => Promise<void>;
2527+
"onNodeUpdate": (_id: string, _node: DataNode) => Promise<void>;
25282528
/**
25292529
* Page Size
25302530
*/

packages/core/src/components/rtk-paginated-list/rtk-paginated-list.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,11 +190,11 @@ export class RtkPaginatedList {
190190

191191
/**
192192
* Updates a new node anywhere in the list
193-
* @param {string} id - The id of the node to update
194-
* @param {DataNode} node - The updated data node
193+
* @param {string} _id - The id of the node to update
194+
* @param {DataNode} _node - The updated data node
195195
* */
196196
@Method()
197-
async onNodeUpdate(id: string, node: DataNode) {}
197+
async onNodeUpdate(_id: string, _node: DataNode) {}
198198

199199
private rerender() {
200200
this.rerenderBoolean = !this.rerenderBoolean;

packages/react-library/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@cloudflare/realtimekit-react-ui",
3-
"version": "1.1.0-staging.4",
3+
"version": "1.1.0-staging.5",
44
"description": "Pre-built, ready-to-use React components, hooks and utilities for integrating with Cloudflare RealtimeKit",
55
"repository": {
66
"type": "git",

0 commit comments

Comments
 (0)