Skip to content

Commit 1137190

Browse files
author
Michael Wittwer
committed
fix(update-request): use params given by args
1 parent 79cf80c commit 1137190

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dynamo/request/update/update.request.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,6 @@ export class UpdateRequest<T, T2 extends T | Partial<T> | void = void> extends W
5858
}
5959

6060
protected doRequest(params: DynamoDB.UpdateItemInput): Promise<DynamoDB.UpdateItemOutput> {
61-
return this.dynamoDBWrapper.updateItem(this.params)
61+
return this.dynamoDBWrapper.updateItem(params)
6262
}
6363
}

0 commit comments

Comments
 (0)