fix inflections display

This commit is contained in:
adueck 2024-08-21 17:07:24 -04:00
parent 50fe74aacd
commit a91ae1b1f3
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ export default function EntryInflections({
if (inf === "error") { if (inf === "error") {
return <h4>Error inflecting word!</h4>; return <h4>Error inflecting word!</h4>;
} }
if (!inf || !inf.inflections) { if (!inf) {
return null; return null;
} }
return ( return (