From 48ac2db7b575f2035f7844ec98007722c8880818 Mon Sep 17 00:00:00 2001 From: Andrey Parfenov Date: Sun, 26 Apr 2026 18:45:03 +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/downsampling.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nodejs_package/tests/downsampling.ts b/nodejs_package/tests/downsampling.ts index cd9837f29..5a941af70 100644 --- a/nodejs_package/tests/downsampling.ts +++ b/nodejs_package/tests/downsampling.ts @@ -14,7 +14,7 @@ async function runExample (): Promise await sleep (3000); board.stopStream(); const data = board.getCurrentBoardData(10); - board.releaseSession() + board.releaseSession(); const eegChannels = BoardShim.getEegChannels(boardId); const oldData = data[eegChannels[0]]; console.info(oldData);