mirror of
https://github.com/MODSetter/SurfSense.git
synced 2026-04-25 00:36:31 +02:00
chore: ran linting
This commit is contained in:
parent
74826b3714
commit
04691d572b
61 changed files with 1962 additions and 1516 deletions
|
|
@ -4,8 +4,8 @@ import {
|
|||
promptCreateRequest,
|
||||
promptDeleteResponse,
|
||||
promptRead,
|
||||
promptUpdateRequest,
|
||||
promptsListResponse,
|
||||
promptUpdateRequest,
|
||||
} from "@/contracts/types/prompts.types";
|
||||
import { ValidationError } from "@/lib/error";
|
||||
import { baseApiService } from "./base-api.service";
|
||||
|
|
|
|||
|
|
@ -27,10 +27,7 @@ export interface ContentPartsState {
|
|||
toolCallIndices: Map<string, number>;
|
||||
}
|
||||
|
||||
function areThinkingStepsEqual(
|
||||
current: ThinkingStepData[],
|
||||
next: ThinkingStepData[]
|
||||
): boolean {
|
||||
function areThinkingStepsEqual(current: ThinkingStepData[], next: ThinkingStepData[]): boolean {
|
||||
if (current.length !== next.length) return false;
|
||||
|
||||
for (let i = 0; i < current.length; i += 1) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue