ERROR tried to subscribe multiple times. 'subscribe' can only be called a single time per channel instanceprivate notificationsChannel: RealtimeChannel = supabaseClient
.channel('notificationsChannel')
.on('postgres_changes', {
...
})``
Component
public subscribeToRealtimeNotifications(): void {
this.notificationsChannel.subscribe()
}
public async unsubscribeToRealtimeNotifications(): Promise<void> {