Skip to content

Commit

Permalink
fix linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
LiranCohen committed Oct 17, 2024
1 parent a319800 commit adbfeb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/api/src/dwn-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -699,7 +699,7 @@ export class DwnApi {
*/
remoteOrigin : request.from,
delegateDid : this.delegateDid,
protocolRole: request.message.protocolRole,
protocolRole : request.message.protocolRole,
...entry as DwnMessage[DwnInterface.RecordsWrite]
};
const record = new Record(this.agent, recordOptions, this.permissionsApi);
Expand Down Expand Up @@ -788,7 +788,7 @@ export class DwnApi {
* payload must be read again (e.g., if the data stream is consumed).
*/
remoteOrigin : request.from,
protocolRole: request.message.protocolRole,
protocolRole : request.message.protocolRole,
delegateDid : this.delegateDid,
data : entry.data,
initialWrite : entry.initialWrite,
Expand Down

0 comments on commit adbfeb6

Please sign in to comment.