File tree Expand file tree Collapse file tree 3 files changed +8
-4
lines changed
Expand file tree Collapse file tree 3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import StatusIndicator from "./components/StatusIndicator";
66import { EvaluationRowSchema , type EvaluationRow } from "./types/eval-protocol" ;
77import { WebSocketServerMessageSchema } from "./types/websocket" ;
88import { GlobalState } from "./GlobalState" ;
9+ import logoLight from "./assets/logo-light.png" ;
910
1011export const state = new GlobalState ( ) ;
1112
@@ -119,9 +120,7 @@ const App = observer(() => {
119120 < div className = "max-w-7xl mx-auto px-3" >
120121 < div className = "flex justify-between items-center h-10" >
121122 < div className = "flex items-center space-x-2" >
122- < h1 className = "text-sm font-medium text-gray-900" >
123- Eval Protocol Logs
124- </ h1 >
123+ < img src = { logoLight } alt = "Eval Protocol" className = "h-6 w-auto" />
125124 </ div >
126125 < div className = "flex items-center gap-2" >
127126 < StatusIndicator isConnected = { state . isConnected } />
Original file line number Diff line number Diff line change 11declare module '*.css' {
22 const content : Record < string , string > ;
33 export default content ;
4- }
4+ }
5+
6+ declare module '*.png' {
7+ const content : string ;
8+ export default content ;
9+ }
You can’t perform that action at this time.
0 commit comments