Skip to content

Commit

Permalink
fix: remove console.debug
Browse files Browse the repository at this point in the history
  • Loading branch information
sgomez committed Aug 7, 2024
1 parent bc4feae commit b44103a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/weather-ollama/src/lib/ai/submit-user-message.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ export async function submitUserMessage(content: string): Promise<{
</BotMessage>
),
maxRetries: 5,
// eslint-disable-next-line @typescript-eslint/no-explicit-any
messages: aiState.get().messages.map((message: any) => ({
content: message.content,
name: message.name,
Expand Down Expand Up @@ -102,7 +103,6 @@ export async function submitUserMessage(content: string): Promise<{
})

const current = await openWeather.getCurrent()
console.debug('current', current)

return (
<div className="flex flex-col gap-4">
Expand Down

0 comments on commit b44103a

Please sign in to comment.