Skip to content

Commit

Permalink
[fix] Remove flashing authentication screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Seabock (Centific Technologies Inc) committed Apr 10, 2024
1 parent 62753bb commit fd9e48a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion frontend/src/pages/chat/Chat.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const Chat = () => {
const [activeCitation, setActiveCitation] = useState<Citation>();
const [isCitationPanelOpen, setIsCitationPanelOpen] = useState<boolean>(false);
const abortFuncs = useRef([] as AbortController[]);
const [showAuthMessage, setShowAuthMessage] = useState<boolean>(true);
const [showAuthMessage, setShowAuthMessage] = useState<boolean | undefined>();
const [messages, setMessages] = useState<ChatMessage[]>([])
const [processMessages, setProcessMessages] = useState<messageStatus>(messageStatus.NotRunning);
const [clearingChat, setClearingChat] = useState<boolean>(false);
Expand Down

Large diffs are not rendered by default.

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<link rel="icon" type="image/x-icon" href="{{ favicon }}" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>{{ title }}</title>
<script type="module" crossorigin src="/assets/index-2d2026f2.js"></script>
<script type="module" crossorigin src="/assets/index-ad61b221.js"></script>
<link rel="stylesheet" href="/assets/index-81370a29.css">
</head>
<body>
Expand Down

0 comments on commit fd9e48a

Please sign in to comment.