Skip to content

Commit

Permalink
fix inflections display
Browse files Browse the repository at this point in the history
  • Loading branch information
adueck committed Aug 21, 2024
1 parent 50fe74a commit a91ae1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/src/components/EntryInflections.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ export default function EntryInflections({
if (inf === "error") {
return <h4>Error inflecting word!</h4>;
}
if (!inf || !inf.inflections) {
if (!inf) {
return null;
}
return (
Expand Down

0 comments on commit a91ae1b

Please sign in to comment.