From 2890b7e464393d2bee32afde8897818a6d2c343c Mon Sep 17 00:00:00 2001 From: ByteAtATime Date: Sat, 26 Jul 2025 10:50:22 -0700 Subject: [PATCH] refactor: update RaycastInstance to FlareInstance --- sidecar/src/index.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sidecar/src/index.ts b/sidecar/src/index.ts index 5a5d294..2988497 100644 --- a/sidecar/src/index.ts +++ b/sidecar/src/index.ts @@ -118,9 +118,9 @@ rl.on('line', (line) => { return; } - const raycastInstance = instance as FlareInstance; + const flareInstance = instance as FlareInstance; - const props = raycastInstance._unserializedProps; + const props = flareInstance._unserializedProps; const handler = props?.[handlerName]; if (typeof handler === 'function') {