Skip to content

Commit 7c77ad8

Browse files
committed
fix: ts-ignore pwa
1 parent 046d8be commit 7c77ad8

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

angular-hub/src/app/services/pwa.service.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { Injectable, signal } from '@angular/core';
44
providedIn: 'root',
55
})
66
export class PwaService {
7-
private promptEvent: unknown;
7+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
8+
private promptEvent: any;
89
isInstallButtonVisible = signal(false);
910

1011
constructor() {}

angular-hub/src/server/routes/v1/events/callforpapers/index.get.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ export default defineEventHandler((event) => {
1111
parse(CommunityListSchema, communities);
1212

1313
return communities
14-
.reduce((acc: unknown[], community: Community) => {
14+
.reduce((acc: any[], community: Community) => {
15+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
1516
const events = community.events.reduce(
1617
(acc: EventCallForPapers[], event: Event) => {
1718
if (

0 commit comments

Comments
 (0)