Skip to content

Commit 47e77ea

Browse files
committed
main 🧊 remove from categories
1 parent 3927f59 commit 47e77ea

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

‎packages/core/src/bundle/hooks/usePerformanceObserver/usePerformanceObserver.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { useEffect, useRef, useState } from 'react';
22
/**
33
* @name usePerformanceObserver
44
* @description - Hook that allows you to observe performance entries
5-
* @category Sensor
5+
* @category Sensors
66
*
77
* @param {UsePerformanceObserverOptions} options The options for the performance observer
88
* @param {PerformanceObserverCallback} callback The function to handle performance entries

‎packages/core/src/bundle/hooks/useWebSocket/useWebSocket.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import { useEvent } from '../useEvent/useEvent';
44
/**
55
* @name useWebSocket
66
* @description - Hook that connects to a WebSocket server and handles incoming and outgoing messages
7-
* @category Network
7+
* @category Browser
88
*
99
* @param {UseWebSocketUrl} url The URL of the WebSocket server
1010
* @param {(webSocket: WebSocket) => void} [options.onConnected] The callback function that is called when the WebSocket connection is established

‎packages/core/src/hooks/usePerformanceObserver/usePerformanceObserver.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ export type UsePerformanceObserverOptions = PerformanceObserverInit & {
99
/**
1010
* @name usePerformanceObserver
1111
* @description - Hook that allows you to observe performance entries
12-
* @category Sensor
12+
* @category Sensors
1313
*
1414
* @param {UsePerformanceObserverOptions} options The options for the performance observer
1515
* @param {PerformanceObserverCallback} callback The function to handle performance entries

‎packages/core/src/hooks/useWebSocket/useWebSocket.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface UseWebSocketReturn {
2828
/**
2929
* @name useWebSocket
3030
* @description - Hook that connects to a WebSocket server and handles incoming and outgoing messages
31-
* @category Network
31+
* @category Browser
3232
*
3333
* @param {UseWebSocketUrl} url The URL of the WebSocket server
3434
* @param {(webSocket: WebSocket) => void} [options.onConnected] The callback function that is called when the WebSocket connection is established

0 commit comments

Comments
 (0)