Skip to content

Commit e807c4e

Browse files
committed
Fix thread separator icon disappearing
1 parent 0f67a7b commit e807c4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/chat/bubbleParts/chatThreadSeparator.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ const ChatThreadSeparator = defineSolidElement({
170170

171171
const scale = createMemo(() => clamp((state().nextIntersectionRatio ?? 1), 0, 1));
172172

173-
const isScaling = createMemo(() => 0 < scale() && scale() < 1);
173+
const isScaling = createMemo(() => scale() < 1);
174174

175175
createEffect(() => {
176176
if(!isScaling() || !scaledEl) return;

0 commit comments

Comments
 (0)