Skip to content

Commit 8abb1c6

Browse files
xkureckbodnara
authored andcommitted
fix: fix ts ignore anotation after prettier changes
* fix ts ignore anotation after prettier changes
1 parent dd6dfda commit 8abb1c6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/publications/src/app/dialogs/add-category-dialog/add-category-dialog.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ export class AddCategoryDialogComponent implements OnInit {
4646

4747
onSubmit() {
4848
this.loading = true;
49-
// @ts-ignore
5049
this.cabinetManagerService
50+
// @ts-ignore
5151
.createCategoryCat({ category: { name: this.nameCtrl.value, rank: this.rankCtrl.value } })
5252
.subscribe(
5353
() => {

apps/user-profile/src/app/pages/settings-page/settings-mailing-lists/settings-mailing-lists.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ export class SettingsMailingListsComponent implements OnInit {
7070
const attribute = resAtts.find(
7171
(att) => att.friendlyName === 'optOutMailingList'
7272
);
73-
// @ts-ignore
7473
if (
7574
attribute &&
75+
// @ts-ignore
7676
!(disableOptOut && (disableOptOut.value as string) === 'true')
7777
) {
7878
this.optOuts.push({

0 commit comments

Comments
 (0)