mirror of
				https://github.com/Yidadaa/ChatGPT-Next-Web.git
				synced 2025-11-04 08:26:12 +08:00 
			
		
		
		
	emoji resouce CDN format override
This commit is contained in:
		@@ -1,6 +1,6 @@
 | 
			
		||||
import { useState, useEffect, useMemo, HTMLProps } from "react";
 | 
			
		||||
 | 
			
		||||
import EmojiPicker, { Theme as EmojiTheme } from "emoji-picker-react";
 | 
			
		||||
import EmojiPicker, { Theme as EmojiTheme, EmojiStyle, } from "emoji-picker-react";
 | 
			
		||||
 | 
			
		||||
import styles from "./settings.module.scss";
 | 
			
		||||
 | 
			
		||||
@@ -181,6 +181,9 @@ export function Settings(props: { closeSettings: () => void }) {
 | 
			
		||||
                <EmojiPicker
 | 
			
		||||
                  lazyLoadEmojis
 | 
			
		||||
                  theme={EmojiTheme.AUTO}
 | 
			
		||||
                  getEmojiUrl={(unified: string, style: EmojiStyle) => {
 | 
			
		||||
                    return `https://cdn.staticfile.org/emoji-datasource-apple/14.0.0/img/${style}/64/${unified}.png`;
 | 
			
		||||
                  }}
 | 
			
		||||
                  onEmojiClick={(e) => {
 | 
			
		||||
                    updateConfig((config) => (config.avatar = e.unified));
 | 
			
		||||
                    setShowEmojiPicker(false);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user