Skip to content

Commit 0143aa5

Browse files
Mohit TejaniMohit Tejani
authored andcommitted
fix: lint issues
1 parent 218da5c commit 0143aa5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/core/endpoints/objects/channel/set.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,9 +69,9 @@ export class SetChannelMetadataRequest<
6969

7070
protected get headers(): Record<string, string> | undefined {
7171
if (this.parameters.ifMatchesEtag) {
72-
return { 'If-Match' : this.parameters.ifMatchesEtag }
72+
return { 'If-Match': this.parameters.ifMatchesEtag };
7373
} else {
74-
return undefined
74+
return undefined;
7575
}
7676
}
7777

src/core/endpoints/objects/uuid/set.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,9 +72,9 @@ export class SetUUIDMetadataRequest<
7272

7373
protected get headers(): Record<string, string> | undefined {
7474
if (this.parameters.ifMatchesEtag) {
75-
return { "If-Match" : this.parameters.ifMatchesEtag }
75+
return { 'If-Match': this.parameters.ifMatchesEtag };
7676
} else {
77-
return undefined
77+
return undefined;
7878
}
7979
}
8080

0 commit comments

Comments
 (0)