Skip to content

Commit b8ca152

Browse files
committed
fix: update emoji list in CorkboardEditor for consistency
1 parent 1fc41ac commit b8ca152

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/corkboard/features/editor/CorkboardEditor.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ export default function CorkboardEditor() {
419419
document.getElementById('cb-close-help-btn')!.onclick = () => helpModal.classList.remove('active');
420420

421421
// Welcome polaroid
422-
const emojis = ['🍧', '🍦', '🍨', '🧁', '🎀', '✨', '🌸', '🥰'];
422+
const emojis = ['🍧', '🍦', '🍨', '🧁', '🎀', '✨', '🥰'];
423423
const randomEmoji = emojis[Math.floor(Math.random() * emojis.length)];
424424
const randX = Math.random() * (window.innerWidth - 300) + 50;
425425
const randY = Math.random() * (window.innerHeight - 350) + 50;

0 commit comments

Comments
 (0)