Skip to content

Commit 75cc1ee

Browse files
committed
fix linter issues
1 parent 1ac195e commit 75cc1ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/shared/services/files.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ export class FilesService {
8888
getFilesWithoutFiltering(filesLink: string, page = 1): Observable<{ files: FileModel[]; meta?: MetaJsonApi }> {
8989
const params: Record<string, string> = {
9090
page: page.toString(),
91-
}
91+
};
9292
return this.jsonApiService
9393
.get<FilesResponseJsonApi>(filesLink, params)
9494
.pipe(map((response) => ({ files: FilesMapper.getFiles(response.data), meta: response.meta })));

0 commit comments

Comments
 (0)