diff --git a/src/client/components/emoji-picker.vue b/src/client/components/emoji-picker.vue
index e38206f140..247e59e8a1 100644
--- a/src/client/components/emoji-picker.vue
+++ b/src/client/components/emoji-picker.vue
@@ -361,6 +361,14 @@ export default defineComponent({
 				this.chosen(exactMatchUnicode);
 				return true;
 			}
+			if (this.searchResultCustom.length > 0) {
+				this.chosen(this.searchResultCustom[0]);
+				return true;
+			}
+			if (this.searchResultUnicode.length > 0) {
+				this.chosen(this.searchResultUnicode[0]);
+				return true;
+			}
 		},
 	}
 });