From ffaa25f4130b1f8a725c40dbcf0693d66c80d53f Mon Sep 17 00:00:00 2001 From: Andrey Parfenov Date: Sun, 26 Apr 2026 18:44:45 +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/ica.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs_package/tests/ica.ts b/nodejs_package/tests/ica.ts index ef5c728b8..5d6a376ed 100644 --- a/nodejs_package/tests/ica.ts +++ b/nodejs_package/tests/ica.ts @@ -14,7 +14,7 @@ async function runExample (): Promise await sleep (10000); board.stopStream(); const data = board.getCurrentBoardData(500); - board.releaseSession() + board.releaseSession(); const eegChannels = BoardShim.getEegChannels(boardId); const eegData = data[eegChannels[0]]; const eeg2D: number[][] = [];