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;