mirror of
https://github.com/ChatGPTNextWeb/ChatGPT-Next-Web.git
synced 2025-10-09 19:46:37 +08:00
4
This commit is contained in:
parent
130a946e6b
commit
2fdc83a240
@ -569,11 +569,11 @@ export function Chat(props: {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<PromptToast
|
{/* <PromptToast
|
||||||
showToast={!hitBottom}
|
showToast={!hitBottom}
|
||||||
showModal={showPromptModal}
|
showModal={showPromptModal}
|
||||||
setShowModal={setShowPromptModal}
|
setShowModal={setShowPromptModal}
|
||||||
/>
|
/> */}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div
|
<div
|
||||||
|
@ -31,7 +31,8 @@ export function Loading(props: { noLogo?: boolean }) {
|
|||||||
return (
|
return (
|
||||||
<div className={styles["loading-content"]}>
|
<div className={styles["loading-content"]}>
|
||||||
{!props.noLogo && <BotIcon />}
|
{!props.noLogo && <BotIcon />}
|
||||||
<LoadingIcon />
|
{/* <LoadingIcon /> */}
|
||||||
|
<p>IMPROVE WITH AI.</p>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
@ -5,10 +5,10 @@ const RAW_CN_URL =
|
|||||||
"https://raw.githubusercontent.com/PlexPt/awesome-chatgpt-prompts-zh/main/prompts-zh.json";
|
"https://raw.githubusercontent.com/PlexPt/awesome-chatgpt-prompts-zh/main/prompts-zh.json";
|
||||||
const CN_URL =
|
const CN_URL =
|
||||||
"https://cdn.jsdelivr.net/gh/PlexPt/awesome-chatgpt-prompts-zh@main/prompts-zh.json";
|
"https://cdn.jsdelivr.net/gh/PlexPt/awesome-chatgpt-prompts-zh@main/prompts-zh.json";
|
||||||
// const RAW_EN_URL =
|
const RAW_EN_URL =
|
||||||
// "https://raw.githubusercontent.com/f/awesome-chatgpt-prompts/main/prompts.csv";
|
"https://raw.githubusercontent.com/f/awesome-chatgpt-prompts/main/prompts.csv";
|
||||||
// const EN_URL =
|
const EN_URL =
|
||||||
// "https://cdn.jsdelivr.net/gh/f/awesome-chatgpt-prompts@main/prompts.csv";
|
"https://cdn.jsdelivr.net/gh/f/awesome-chatgpt-prompts@main/prompts.csv";
|
||||||
const FILE = "./public/prompts.json";
|
const FILE = "./public/prompts.json";
|
||||||
|
|
||||||
async function fetchCN() {
|
async function fetchCN() {
|
||||||
|
Loading…
Reference in New Issue
Block a user