Skip to content

Commit 9953299

Browse files
authored
Update index.tsx
typo: renamed QueueItEngine.run argument names
1 parent a4a43cb commit 9953299

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ class QueueItEngine {
2727
nativeQueueIt.enableTesting(value);
2828
}
2929

30-
async run(clientId: string, eventOrAlias: string): Promise<EnqueueResult> {
31-
const result = await nativeQueueIt.runAsync(clientId, eventOrAlias);
30+
async run(customerId: string, eventOrAliasId: string): Promise<EnqueueResult> {
31+
const result = await nativeQueueIt.runAsync(customerId, eventOrAliasId);
3232
return {
3333
QueueITToken: result.queueittoken,
3434
State: result.state,

0 commit comments

Comments
 (0)