From d55615abcc2340fe4e5f8e421814a42ff9e3d4d7 Mon Sep 17 00:00:00 2001 From: Bogdan Bodnar Date: Fri, 6 Dec 2019 12:09:54 +0100 Subject: [PATCH] Grammar. --- src/webSockets/hooks.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webSockets/hooks.js b/src/webSockets/hooks.js index 7c0fc61..7357ead 100644 --- a/src/webSockets/hooks.js +++ b/src/webSockets/hooks.js @@ -11,7 +11,7 @@ export function useWSForisModule(ws, module, action = "update_settings") { const [data, setData] = useState(null); useEffect(() => { - // Sometime we want to disable this hook if WS is not passed. We can't make conditional + // Sometimes we want to disable this hook if WS is not passed. We can't make conditional // hooks, but we can disable it here. It's used especially in ForisForm when a module // doesn't present any WS endpoint. if (!ws) return;