Skip to content

Commit

Permalink
fix imports
Browse files Browse the repository at this point in the history
  • Loading branch information
alissacrane-cb committed Nov 6, 2024
1 parent d2bb61a commit 74a71bd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/components/Navbar.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { useEffect, useCallback, useState } from 'react';
import { useCallback, useEffect, useState } from 'react';
import { notoSansThai } from '../constants';
import { translations } from '../translations';
import type { Language } from '../types';
Expand Down
2 changes: 1 addition & 1 deletion app/components/Stream.tsx
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { useCallback, useEffect, useRef, useState } from 'react';
import { DEFAULT_PROMPT, notoSansThai } from '../constants';
import useChat from '../hooks/useChat';
import { translations } from '../translations';
import type { AgentMessage, Language, StreamEntry } from '../types';
import useChat from '../hooks/useChat';
import ChatInput from './ChatInput';
import StreamItem from './StreamItem';

Expand Down

0 comments on commit 74a71bd

Please sign in to comment.