Skip to content

Commit 022bac9

Browse files
chore: upgrade preact to version 10.27.2
1 parent 41e9e00 commit 022bac9

File tree

3 files changed

+9
-6
lines changed

3 files changed

+9
-6
lines changed

package-lock.json

Lines changed: 5 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@
9595
"goober": "^2.1.14",
9696
"lodash-es": "^4.17.21",
9797
"mustache": "^4.2.0",
98-
"preact": "10.19.5",
98+
"preact": "^10.27.2",
9999
"uuid": "^8.3.2"
100100
},
101101
"optionalDependencies": {

src/visualBuilder/components/Collab/ThreadPopup/CommentTextArea.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,9 @@ const MentionSuggestionsList: React.FC<{
9393
]
9494
: ""
9595
)}
96-
ref={(el) => (itemRefs.current[index] = el)}
96+
ref={(el) => {
97+
itemRefs.current[index] = el;
98+
}}
9799
onKeyDown={(e) =>
98100
e.key === "Enter"
99101
? insertMention(user)

0 commit comments

Comments
 (0)