diff --git a/src/app.scss b/src/app.scss index 9522ea3..2254112 100644 --- a/src/app.scss +++ b/src/app.scss @@ -28,7 +28,7 @@ a.is-disabled { } /* Show the edit button on hover of the chat name */ -.chatname:hover .editbutton { +.chat-header:hover .editbutton { display: inline !important; text-decoration: none !important; } diff --git a/src/lib/Chat.svelte b/src/lib/Chat.svelte index 273541d..cc8b9e5 100644 --- a/src/lib/Chat.svelte +++ b/src/lib/Chat.svelte @@ -62,6 +62,7 @@ }, }); */ + const response: Response = await ( await fetch("https://api.openai.com/v1/chat/completions", { method: "POST", @@ -105,7 +106,7 @@ }; -