fix build errors

This commit is contained in:
padreug 2025-09-17 02:29:15 +02:00
parent 8c39ca3599
commit 2a9915a727
7 changed files with 18 additions and 20 deletions

View file

@ -1,4 +1,4 @@
import { ref, reactive } from 'vue'
import { reactive } from 'vue'
import { BaseService } from '@/core/base/BaseService'
import { injectService, SERVICE_TOKENS } from '@/core/di-container'
import type { Event as NostrEvent, Filter } from 'nostr-tools'
@ -24,7 +24,6 @@ export class ProfileService extends BaseService {
// Profile cache - reactive for UI updates
private _profiles = reactive(new Map<string, UserProfile>())
private _isLoading = ref(false)
private currentSubscription: string | null = null
private currentUnsubscribe: (() => void) | null = null

View file

@ -42,7 +42,6 @@ export class ReactionService extends BaseService {
private currentUnsubscribe: (() => void) | null = null
// Track deletion subscription separately
private deletionSubscription: string | null = null
private deletionUnsubscribe: (() => void) | null = null
// Track which events we're monitoring
@ -99,7 +98,7 @@ export class ReactionService extends BaseService {
}
})
this.deletionSubscription = subscriptionId
// Store subscription ID if needed for tracking
this.deletionUnsubscribe = unsubscribe
} catch (error) {