From c187a7cf4ff321d179c1981ac14c6f4315ff22d6 Mon Sep 17 00:00:00 2001 From: Charles Vien Date: Sat, 17 Jan 2026 00:26:44 -0800 Subject: [PATCH] Fix typecheck failing on TorchGlow --- apps/array/src/renderer/components/TorchGlow.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/array/src/renderer/components/TorchGlow.tsx b/apps/array/src/renderer/components/TorchGlow.tsx index ee6dc0814..c9a5746b4 100644 --- a/apps/array/src/renderer/components/TorchGlow.tsx +++ b/apps/array/src/renderer/components/TorchGlow.tsx @@ -2,7 +2,7 @@ import { useThemeStore } from "@stores/themeStore"; import { useEffect, useState } from "react"; interface TorchGlowProps { - containerRef: React.RefObject; + containerRef: React.RefObject; } export function TorchGlow({ containerRef }: TorchGlowProps) {