Skip to content

Commit

Permalink
fix: solve issue where the logo was not displayed in welcome screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Xiphe committed Sep 15, 2020
1 parent 73a8b56 commit d1dfd28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
File renamed without changes
3 changes: 2 additions & 1 deletion src/views/Welcome/Welcome.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { ipcRenderer } from 'electron';
import { useMenu, useRecentFiles } from '../../lib';
import { Content, Button, Header } from '../../components';
import styles from './Welcome.module.scss';
import logo from '../../img/logo.png';

type Props = {
onCreate: () => void;
Expand Down Expand Up @@ -35,7 +36,7 @@ export default function Welcome({ onCreate }: Props) {
<div>
<img
className={styles.logo}
src="/logo.png"
src={logo}
alt="BudgetBudget Logo - treasure chest"
/>
<h1 className={styles.title}>Welcome to BudgetBudget (Beta)</h1>
Expand Down

0 comments on commit d1dfd28

Please sign in to comment.