Skip to content

Commit 167f66a

Browse files
committed
ALCS-2325 Cleanup
1 parent 0c164dd commit 167f66a

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed

.gitignore

-5
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,3 @@ playwright/.cache/
1616
.~lock.*
1717

1818
/ora2pg_data
19-
alcs-frontend/.eslintrc.json
20-
tsconfig.json
21-
services/.prettierrc
22-
services/.prettierrc
23-
alcs-frontend/.eslintrc.json

alcs-frontend/.eslintrc.json

-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
"root": true,
33
"ignorePatterns": ["projects/**/*"],
4-
"no-octal-escape": 0,
54
"overrides": [
65
{
76
"files": ["*.ts"],

alcs-frontend/src/app/services/tag/tag.service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class TagService {
3434
this.http.get<PaginatedTagResponse>(`${this.url}/${pageIndex}/${itemsPerPage}${searchQuery}`)
3535
);
3636
} catch (err) {
37-
console.log(err);
37+
console.error(err);
3838
this.toastService.showErrorToast('Failed to fetch tags');
3939
}
4040
return;

0 commit comments

Comments
 (0)