Skip to content

Commit

Permalink
Update logo
Browse files Browse the repository at this point in the history
  • Loading branch information
xyTom committed Mar 28, 2024
1 parent 69a2f6f commit 2ae1ecc
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/renderer/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
import './App.css';
import React, { useState,useEffect } from 'react';
import gemini from './models/gemini';
import logo from './assets/logo.png';

declare global {
interface Window {
Expand Down Expand Up @@ -48,7 +49,7 @@ function App() {
<div className="App">
<header className="App-header">
{/* <!-- if no screenshot result, show the logo --> */}
{!screenShotResult && <img src="./public/logo.png" className="App-logo" alt="logo" />}
{!screenShotResult && <img src={logo} className="App-logo" alt="logo" />}
<p className="mb-2">
Press <code>{shortcut}</code> to make a screenshot.
</p>
Expand Down
File renamed without changes
1 change: 1 addition & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": true,
"sourceMap": true,
"baseUrl": ".",
Expand Down

0 comments on commit 2ae1ecc

Please sign in to comment.