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.
This commit is contained in:
giancarlo
2024-04-25 23:00:23 +07:00
parent 2a65cd0b95
commit 2b3dbb4549

View File

@@ -1,3 +1,5 @@
'use client';
import { createContext } from 'react';
import { ConsoleMonitoringService } from './console-monitoring.service';