@@ -27,27 +27,27 @@ const Stats = ({playerData, farmName, farmhandData}: formattedSaveFileType) => {
2727 ) ;
2828
2929
30- const playerStats = farmhandData . map ( ( item , i ) => (
30+ const playerStats = farmhandData . map ( ( p , i ) => (
3131 < TabPanel key = { i } >
3232 < section className = "wrapper" >
33- < Skills { ... item . experience } > </ Skills >
33+ < Skills experience = { p . experience } > </ Skills >
3434 < div className = "ropes" >
3535 < img src = { Rope } alt = "" > </ img >
3636 < img src = { Rope } alt = "" > </ img >
3737 </ div >
3838 < Achievements
39- recipesCooked = { item . cookedItems }
40- itemsCrafted = { item . itemsCrafted }
41- cropsShipped = { item . cropsShipped }
42- fishCaught = { item . fishCaught }
43- friendship = { item . friendship }
44- monstersKilled = { item . monstersKilled }
45- shippedItems = { item . shippedItems }
46- moneyEarned = { item . moneyEarned }
47- museumCollection = { item . museumCollection }
48- questsDone = { item . questsDone }
49- specialReq = { item . specialRequests }
50- pendingSpecialReq = { item . pendingSpecialRequests }
39+ cookedItems = { p . cookedItems }
40+ itemsCrafted = { p . itemsCrafted }
41+ cropsShipped = { p . cropsShipped }
42+ fishCaught = { p . fishCaught }
43+ friendship = { p . friendship }
44+ monstersKilled = { p . monstersKilled }
45+ shippedItems = { p . shippedItems }
46+ moneyEarned = { p . moneyEarned }
47+ museumCollection = { p . museumCollection }
48+ questsDone = { p . questsDone }
49+ specialRequests = { p . specialRequests }
50+ //availableSpecialRequests={p.availableSpecialRequests }
5151 > </ Achievements >
5252 </ section >
5353 </ TabPanel >
@@ -73,7 +73,7 @@ const Stats = ({playerData, farmName, farmhandData}: formattedSaveFileType) => {
7373 < img src = { Rope } alt = "" > </ img >
7474 </ div >
7575 < Achievements
76- recipesCooked = { playerData . cookedItems }
76+ cookedItems = { playerData . cookedItems }
7777 itemsCrafted = { playerData . itemsCrafted }
7878 cropsShipped = { playerData . cropsShipped }
7979 fishCaught = { playerData . fishCaught }
@@ -83,7 +83,7 @@ const Stats = ({playerData, farmName, farmhandData}: formattedSaveFileType) => {
8383 moneyEarned = { playerData . moneyEarned }
8484 museumCollection = { playerData . museumCollection }
8585 questsDone = { playerData . questsDone }
86- specialReq = { playerData . specialRequests }
86+ specialRequests = { playerData . specialRequests }
8787 //pendingSpecialReq={playerData.pendingSpecialRequests}
8888 > </ Achievements >
8989 </ >
0 commit comments