From 66ba4a596c27373beb3a69b05f5cbf173f119299 Mon Sep 17 00:00:00 2001 From: Elian Doran Date: Wed, 15 Oct 2025 22:31:29 +0300 Subject: [PATCH] fix(collection/presentation): sometimes doesn't refresh properly --- apps/client/src/widgets/collections/presentation/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/client/src/widgets/collections/presentation/index.tsx b/apps/client/src/widgets/collections/presentation/index.tsx index 5760fd2dd..8ca32b17e 100644 --- a/apps/client/src/widgets/collections/presentation/index.tsx +++ b/apps/client/src/widgets/collections/presentation/index.tsx @@ -95,13 +95,13 @@ function Presentation({ presentation, apiRef: externalApiRef } : { presentation: apiRef.current = null; } } - }, []); + }, [ presentation ]); return (
{presentation.slides?.map(slide => ( - + ))}