diff --git a/web/app/(commonLayout)/apps/NewAppDialog.tsx b/web/app/(commonLayout)/apps/NewAppDialog.tsx
index ab8df96e80..39f6c519bf 100644
--- a/web/app/(commonLayout)/apps/NewAppDialog.tsx
+++ b/web/app/(commonLayout)/apps/NewAppDialog.tsx
@@ -103,12 +103,10 @@ const NewAppDialog = ({ show, onClose }: NewAppDialogProps) => {
>
}
>
-
-
{t('app.newApp.captionName')}
diff --git a/web/app/components/base/emoji-picker/index.tsx b/web/app/components/base/emoji-picker/index.tsx
index e4b7d1a75c..116b912ffd 100644
--- a/web/app/components/base/emoji-picker/index.tsx
+++ b/web/app/components/base/emoji-picker/index.tsx
@@ -29,7 +29,7 @@ init({ data })
async function search(value: string) {
const emojis = await SearchIndex.search(value) || []
-
+
const results = emojis.map((emoji: any) => {
return emoji.skins[0].native
})
@@ -88,10 +88,10 @@ const EmojiPicker: FC = ({
) => {
if (e.target.value === '') {
setIsSearching(false)
@@ -102,7 +102,7 @@ const EmojiPicker: FC = ({
setSearchedEmojis(emojis)
}
}}
- />
+ />
@@ -116,19 +116,19 @@ const EmojiPicker: FC = ({
return {
+ onClick={() => {
setSelectedEmoji(emoji)
}}
>
-
+
})}
>}
-
+
{categories.map((category: any, index: number) => {
return
@@ -188,10 +188,10 @@ const EmojiPicker: FC = ({
}}>
Cancel
-