Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
nfcampos committed Apr 16, 2024
1 parent 1f64249 commit b3643bd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions frontend/src/hooks/useHistories.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { useEffect, useState } from "react";
import { Message as MessageType } from "./useChatList";
import { Message } from "../types";
import { StreamState } from "./useStreamState";

async function getHistories(threadId: string) {
Expand All @@ -12,7 +12,7 @@ async function getHistories(threadId: string) {
}

export interface History {
values: MessageType[];
values: Message[];
next: string[];
config: Record<string, unknown>;
}
Expand Down

0 comments on commit b3643bd

Please sign in to comment.