From 2b3dbb4549344ea9e9140e14d8d21bc434f10496 Mon Sep 17 00:00:00 2001 From: giancarlo Date: Thu, 25 Apr 2024 23:00:23 +0700 Subject: [PATCH] Add 'use client' statement to monitoring.context.ts In this commit, the 'use client' statement has been added to the top of the 'monitoring.context.ts' file. This is to ensure that the context is properly set for further monitoring operations. --- packages/monitoring/core/src/monitoring.context.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/monitoring/core/src/monitoring.context.ts b/packages/monitoring/core/src/monitoring.context.ts index ed2a40d94..20588605d 100644 --- a/packages/monitoring/core/src/monitoring.context.ts +++ b/packages/monitoring/core/src/monitoring.context.ts @@ -1,3 +1,5 @@ +'use client'; + import { createContext } from 'react'; import { ConsoleMonitoringService } from './console-monitoring.service';