Skip to content

Commit 8956909

Browse files
committed
chore: fix lint errors and update biome to 2.3.13
1 parent 011a4ac commit 8956909

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

biome.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"$schema": "https://biomejs.dev/schemas/2.3.11/schema.json",
2+
"$schema": "https://biomejs.dev/schemas/2.3.13/schema.json",
33
"vcs": {
44
"enabled": true,
55
"clientKind": "git",

packages/blog/src/chat/hooks/usePersonaChat.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ import { useCallback, useEffect, useMemo, useRef, useState } from 'react'
1616
import {
1717
type BlogContext,
1818
type ChatState,
19-
type CustomDataPart,
2019
type Document,
2120
type DoneMetadata,
2221
initialChatState,

packages/dwkim/src/__tests__/utils/personaApiClient.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ describe('ApiError', () => {
3636
*/
3737
function dataStream(parts: string[]): ReadableStream<Uint8Array> {
3838
const encoder = new TextEncoder()
39-
const content = parts.join('\n') + '\n'
39+
const content = `${parts.join('\n')}\n`
4040
return new ReadableStream({
4141
start(controller) {
4242
controller.enqueue(encoder.encode(content))

packages/persona-api/src/services/personaAgent.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -380,7 +380,7 @@ function getSimpleResponse(category: SimpleCategory): string {
380380
*/
381381
async function classifyNode(
382382
state: PersonaState,
383-
config: LangGraphRunnableConfig
383+
_config: LangGraphRunnableConfig
384384
): Promise<Partial<PersonaState>> {
385385
const category = classifySimpleQuery(state.query)
386386

0 commit comments

Comments
 (0)