Skip to content

Commit

Permalink
Actually fix signature
Browse files Browse the repository at this point in the history
  • Loading branch information
guillemcordoba committed Jul 4, 2024
1 parent 5c41be4 commit 607c4c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/signals/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@holochain-open-dev/signals",
"version": "0.300.3",
"version": "0.300.4",
"description": "Holochain async-signals to build reusable holochain-open-dev modules",
"author": "[email protected]",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/signals/src/holochain.ts
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@ export function deletesForEntrySignal<
>(
client: ZomeClient<S>,
originalActionHash: ActionHash,
fetchDeletes: () => Promise<Array<SignedActionHashed<Delete>>>,
fetchDeletes: () => Promise<Array<SignedActionHashed<Delete>> | undefined>,
pollIntervalMs: number = DEFAULT_POLL_INTERVAL_MS,
): AsyncSignal<Array<SignedActionHashed<Delete>>> {
let active = false;
Expand Down

0 comments on commit 607c4c2

Please sign in to comment.