Skip to content

Commit

Permalink
[#11] fix: resolve translations being partially truncated
Browse files Browse the repository at this point in the history
  • Loading branch information
hee-suh committed Aug 14, 2022
1 parent 040cbe3 commit 1df1350
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion react-native/components/BottomDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ function BottomDrawer(props: BottomDrawerProps) {
</Popover>
) : (
<Text key={item.content}>
{item.content.slice(72)}
{item.content}
</Text>
)
)
Expand Down

0 comments on commit 1df1350

Please sign in to comment.