Skip to content

Commit 770f60f

Browse files
authored
fix: fix page rapidly flickering issue (#935)
* fix: fix page rapidly flickering issue * docs: update changelog * refactor: update
1 parent 5c92b5a commit 770f60f

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

docs/content.en/docs/release-notes/_index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,7 @@ fix: duplicate chat content #916
2828
fix: resolve pinned window shortcut not working #917
2929
fix: WM ext does not work when operating focused win from another display #919
3030
fix(Window Management): Next/Previous Desktop do not work #926
31+
fix: fix page rapidly flickering issue #935
3132

3233
### ✈️ Improvements
3334

@@ -41,7 +42,6 @@ chore: bump tauri_nspanel to v2.1 #933
4142
refactor: show_coco/hide_coco now use NSPanel's function on macOS #933
4243
refactor: procedure that convert_pages() into a func #934
4344

44-
4545
## 0.8.0 (2025-09-28)
4646

4747
### ❌ Breaking changes

src/components/Search/InputBox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,13 +334,13 @@ export default function ChatInput({
334334
return (
335335
<div className={`w-full relative`}>
336336
<div
337+
ref={containerRef}
337338
className={`flex items-center dark:text-[#D8D8D8] rounded-md transition-all relative overflow-hidden`}
338339
>
339340
{lineCount === 1 && renderSearchIcon()}
340341

341342
{visibleSearchBar() && (
342343
<div
343-
ref={containerRef}
344344
className={clsx(
345345
"relative w-full p-2 bg-[#ededed] dark:bg-[#202126]",
346346
{

0 commit comments

Comments
 (0)