From e9da93e648c9f7f051bd133b461383c27f5c2db1 Mon Sep 17 00:00:00 2001 From: crazywoola Date: Fri, 26 May 2023 09:53:17 +0800 Subject: [PATCH] =?UTF-8?q?change=20=F0=9F=8D=8C=20to=20=F0=9F=A4=96?= =?UTF-8?q?=EF=B8=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- web/app/(commonLayout)/apps/NewAppDialog.tsx | 4 ++-- web/app/components/explore/create-app-modal/index.tsx | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/web/app/(commonLayout)/apps/NewAppDialog.tsx b/web/app/(commonLayout)/apps/NewAppDialog.tsx index e378560dd4..dccec2118f 100644 --- a/web/app/(commonLayout)/apps/NewAppDialog.tsx +++ b/web/app/(commonLayout)/apps/NewAppDialog.tsx @@ -37,7 +37,7 @@ const NewAppDialog = ({ show, onSuccess, onClose }: NewAppDialogProps) => { // Emoji Picker const [showEmojiPicker, setShowEmojiPicker] = useState(false) - const [emoji, setEmoji] = useState({ icon: '🍌', icon_background: '#FFEAD5' }) + const [emoji, setEmoji] = useState({ icon: '🤖️', icon_background: '#FFEAD5' }) const mutateApps = useContextSelector(AppsContext, state => state.mutateApps) @@ -102,7 +102,7 @@ const NewAppDialog = ({ show, onSuccess, onClose }: NewAppDialogProps) => { setShowEmojiPicker(false) }} onClose={() => { - setEmoji({ icon: '🍌', icon_background: '#FFEAD5' }) + setEmoji({ icon: '🤖️', icon_background: '#FFEAD5' }) setShowEmojiPicker(false) }} />} diff --git a/web/app/components/explore/create-app-modal/index.tsx b/web/app/components/explore/create-app-modal/index.tsx index 5053d96bbf..b1668292cf 100644 --- a/web/app/components/explore/create-app-modal/index.tsx +++ b/web/app/components/explore/create-app-modal/index.tsx @@ -28,7 +28,7 @@ const CreateAppModal = ({ const [name, setName] = React.useState('') const [showEmojiPicker, setShowEmojiPicker] = useState(false) - const [emoji, setEmoji] = useState({ icon: '🍌', icon_background: '#FFEAD5' }) + const [emoji, setEmoji] = useState({ icon: '🤖️', icon_background: '#FFEAD5' }) const submit = () => { if(!name.trim()) { @@ -74,7 +74,7 @@ const CreateAppModal = ({ setShowEmojiPicker(false) }} onClose={() => { - setEmoji({ icon: '🍌', icon_background: '#FFEAD5' }) + setEmoji({ icon: '🤖️', icon_background: '#FFEAD5' }) setShowEmojiPicker(false) }} />}