diff --git a/src/islands/note/components/notes/TextNote/AI.tsx b/src/islands/note/components/notes/TextNote/AI.tsx index 3cc9ce5..c1cee30 100644 --- a/src/islands/note/components/notes/TextNote/AI.tsx +++ b/src/islands/note/components/notes/TextNote/AI.tsx @@ -1,9 +1,9 @@ import { + type GenerateContentResponse, type GenerateContentStreamResult, type GoogleGenerativeAI, - GoogleGenerativeAIResponseError, - type GenerateContentResponse, GoogleGenerativeAIFetchError, + GoogleGenerativeAIResponseError, } from '@google/generative-ai' import markdownIt from 'markdown-it' import { diff --git a/src/islands/note/components/utils/Spinner.tsx b/src/islands/note/components/utils/Spinner.tsx index 92f326a..623de9d 100644 --- a/src/islands/note/components/utils/Spinner.tsx +++ b/src/islands/note/components/utils/Spinner.tsx @@ -1,3 +1,5 @@ export const Spinner = () => { - return
+ return ( + + ) }