fix: default icon (#213)

This commit is contained in:
crazywoola
2023-05-26 09:55:37 +08:00
committed by GitHub
parent 17a1c05728
commit f9df23a091
3 changed files with 5 additions and 5 deletions

View File

@@ -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)
}}
/>}