Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions frontend/src/App.tsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,10 @@
import { useEffect, useState } from 'react';
import { useEffect } from 'react';
import './App.css';
import { Ingester } from './components/Ingester';
import { Chat } from './components/Chat';
import { clearSession, getSessionId } from './api';
import { clearSession } from './api';

function App() {
const [sessionId] = useState(getSessionId());

useEffect(() => {
clearSession().catch(() => { });
Expand Down
Loading