Skip to content

Commit df5e961

Browse files
committed
small fixes
1 parent c582290 commit df5e961

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

docs/app/(home)/_components/DigitalCommons.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ export const DigitalCommons: React.FC = () => {
9595
onClick={handlePlayPause}
9696
onEnded={() => setIsPlaying(false)}
9797
playsInline
98+
preload="none"
9899
>
99100
<source src="/video/docs.mp4" type="video/mp4" />
100101
</video>

packages/xl-ai-server/src/routes/mock.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ regularRoute.post("/streamText", async (c) => {
3737
const { messages } = await c.req.json();
3838
const blockId =
3939
messages[messages.length - 1].metadata.documentState.blocks[0].id;
40-
// console.log(blockId);
40+
4141
MANUAL_TOOL_CALLS[0].args.operations[0].referenceId = blockId;
4242
const stream = createUIMessageStream<any>({
4343
execute: async ({ writer }) => {

0 commit comments

Comments
 (0)