From ceedcb1a2cbeb67f7dc7f9f72a794c59c1fbe93a Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Fri, 17 Oct 2025 21:37:08 +0300 Subject: [PATCH] fix(collection/presentation): sync not called properly --- apps/client/src/widgets/collections/presentation/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/src/widgets/collections/presentation/index.tsx b/apps/client/src/widgets/collections/presentation/index.tsx index 119d4e7b0..5fe8f94ff 100644 --- a/apps/client/src/widgets/collections/presentation/index.tsx +++ b/apps/client/src/widgets/collections/presentation/index.tsx @@ -137,7 +137,7 @@ function Presentation({ presentation, setApi } : { presentation: PresentationMod }, }); api.initialize().then(() => { - setRevealApi(revealApi); + setRevealApi(api); setApi(api); });