Skip to content

Commit b1c67f9

Browse files
committed
fix
1 parent 50a89f8 commit b1c67f9

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

components/components/Whiteboard.tsx

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,13 @@ function Whiteboard({doCreate, closeWhiteboard}: Props) {
5151
<Excalidraw
5252
renderTopRightUI={() => (
5353
<>
54-
<FaHourglass
55-
className="mt-[10px]"
56-
onClick={exportImg}
57-
/>
54+
<span
55+
className="hover:bg-slate-200 mt-[10px]"
56+
onClick={exportImg}
57+
>
58+
<FaHourglass />
59+
</span>
60+
5861
<span
5962
onClick={() => {
6063
closeWhiteboard();

service/events/llm.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,7 @@ async function useGeminiResponse([messages, callback, params]: Parameters<
9090
};
9191

9292
const contents = transformData(messages);
93+
console.log('************', contents);
9394
const result = await model.generateContentStream({
9495
contents: contents,
9596
generationConfig,

0 commit comments

Comments
 (0)