Skip to content

Commit f8a89f2

Browse files
committed
fix formating
1 parent 5401024 commit f8a89f2

File tree

2 files changed

+8
-7
lines changed

2 files changed

+8
-7
lines changed

src/arena_api_types.ts

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -215,13 +215,14 @@ export type ArenaMediaBlock = ArenaBaseBlock & {
215215
export type ArenaAttachmentBlock = ArenaBaseBlock & {
216216
/** (String) The type of block. Will always be "Attachment" */
217217
class: 'Attachment';
218-
}
218+
};
219219

220-
export type ArenaBlock = ArenaBaseBlock
221-
| ArenaImageBlock
222-
| ArenaTextBlock
223-
| ArenaLinkBlock
224-
| ArenaMediaBlock
220+
export type ArenaBlock =
221+
| ArenaBaseBlock
222+
| ArenaImageBlock
223+
| ArenaTextBlock
224+
| ArenaLinkBlock
225+
| ArenaMediaBlock
225226
| ArenaAttachmentBlock;
226227

227228
export type ArenaCommentEntity = {

src/arena_service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ export class ArenaClient implements ArenaApi {
173173
'Content-Type': 'application/json',
174174
Authorization: config?.token ? `Bearer ${config.token}` : '',
175175
};
176-
this.fetch = config?.fetch || fetch;
176+
this.fetch = config?.fetch || fetch;
177177
this.date = config?.date || Date;
178178
}
179179

0 commit comments

Comments
 (0)