Skip to content

Commit

Permalink
fix(llm): correct memo/tag drawer copy
Browse files Browse the repository at this point in the history
  • Loading branch information
thesan committed Dec 9, 2024
1 parent 20a927c commit 02418a1
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions .changeset/hungry-moles-yawn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"live-mobile": minor
---

Fix the memo/tag drawer copy
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ export const MemoTagDrawer = memo(({ open, onClose, onNext }: Props) => {
</Flex>

<Text variant="h4" textAlign="center" mb={6}>
{t("transfer.receive.memoTag.title")}
{t("transfer.memoTag.title")}
</Text>

<Text variant="bodyLineHeight" textAlign="center" color="neutral.c80" mb={8}>
{t("transfer.receive.memoTag.description")}
{t("transfer.memoTag.description")}
</Text>

<Button type="primary" title={t("transfer.memoTag.cta")} onPress={onClose} mb={3} />
Expand Down

0 comments on commit 02418a1

Please sign in to comment.