Skip to content

Commit

Permalink
♻️ refactor: full width
Browse files Browse the repository at this point in the history
  • Loading branch information
nxhawk committed Oct 28, 2024
1 parent a31614a commit b4e0576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/word-result/WordResult.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ const WordResult = ({ wordFound, wordNotFound }: Props) => {
))}
</VStack>
{wordFound.map((wordFound, index) => (
<VStack key={index} gap={"32px"} alignItems="flex-start" marginTop={"20px"}>
<VStack key={index} gap={"32px"} alignItems="flex-start" marginTop={"20px"} w={"full"}>
{wordFound.meanings.map((meaning, index) => (
<VStack key={`meaning${index}`} gap={"16px"} alignItems="flex-start">
<VStack key={`meaning${index}`} gap={"16px"} alignItems="flex-start" w={"full"}>
<Heading size="lg" color={"blue.900"} flexWrap={"nowrap"}>
{meaning.partOfSpeech}
</Heading>
Expand Down

0 comments on commit b4e0576

Please sign in to comment.