Skip to content

Commit a00aead

Browse files
committed
Fix logo import path and remove debug log
Updated the Logo import to use the correct filename casing and removed an unnecessary console.log statement from the UpdatePlayerData function.
1 parent 80c14a4 commit a00aead

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

src/Components/Main/Main.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import Stats from '../stats/stats.js'
22
import Viewer from '../Viewer/Viewer'
3-
import Logo from '@media/Logo.png';
3+
import Logo from '@media/logo.png';
44
import fb from '@media/Social/fb.png'
55
import kofi from '@media/Social/kofi.png'
66
import twit from '@media/Social/twitter.png'
@@ -20,7 +20,6 @@ const Main = () => {
2020
const [globalFarmName, setFarmName] = useState("My Farm");
2121

2222
const UpdatePlayerData = ({farmName, playerData, farmhandData}: formattedSaveFileType) => {
23-
console.log("Player data received", playerData, farmhandData);
2423
if(!playerData) {
2524
console.error("No player data received in Main component");
2625
return;

0 commit comments

Comments
 (0)