From 5cc10e9b0efc69706db9747c1cc45453f4c56756 Mon Sep 17 00:00:00 2001 From: Andrey Parfenov Date: Sun, 26 Apr 2026 18:45:11 +0700 Subject: [PATCH] Fix for Semicolon insertion Co-authored-by: Copilot Autofix powered by AI <62310815+github-advanced-security[bot]@users.noreply.github.com> --- nodejs_package/tests/denoising.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs_package/tests/denoising.ts b/nodejs_package/tests/denoising.ts index c161ea4fb..bb7702788 100644 --- a/nodejs_package/tests/denoising.ts +++ b/nodejs_package/tests/denoising.ts @@ -14,7 +14,7 @@ async function runExample (): Promise await sleep (5000); board.stopStream(); const data = board.getBoardData(); - board.releaseSession() + board.releaseSession(); const eegChannels = BoardShim.getEegChannels(boardId); const oldData = data[eegChannels[0]]; console.info(oldData);