We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
{allFastings.map((fasting, index) => {
if (fasting.day.month === ethiopianMonths[ethiopianCalendar.month - 1]) { return ( <div key={index} style={{ border: '1px solid black', padding: '10px' }}> {fasting.day.month} {fasting.day.date}: {fasting.beal} ); } })}
the error is property month and date doesn't exist on type 'object'. for the day, i tried custom types but that isnt working as well.
The text was updated successfully, but these errors were encountered:
Can you please provide more information about your code, specially variable initializations
Sorry, something went wrong.
No branches or pull requests
if (fasting.day.month === ethiopianMonths[ethiopianCalendar.month - 1]) {
return (
<div key={index} style={{ border: '1px solid black', padding: '10px' }}>
{fasting.day.month} {fasting.day.date}: {fasting.beal}
);
}
})}
the error is property month and date doesn't exist on type 'object'. for the day, i tried custom types but that isnt working as well.
The text was updated successfully, but these errors were encountered: