From 547525ecee2722dfcbd0bd2bd9ce68b2529a7720 Mon Sep 17 00:00:00 2001 From: Patrick Silva Date: Wed, 11 Mar 2026 15:59:17 -0300 Subject: [PATCH] fix: correct comment unit from 500s to 500ms in Preview bundler listener --- src/components/MDX/Sandpack/Preview.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/MDX/Sandpack/Preview.tsx b/src/components/MDX/Sandpack/Preview.tsx index ead9341b6e3..9ab9df10f36 100644 --- a/src/components/MDX/Sandpack/Preview.tsx +++ b/src/components/MDX/Sandpack/Preview.tsx @@ -121,7 +121,7 @@ export function Preview({ /** * The spinner component transition might be longer than * the bundler loading, so we only show the spinner if - * it takes more than 500s to load the bundler. + * it takes more than 500ms to load the bundler. */ timeout = setTimeout(() => { setShowLoading(true);