Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update copy in the tBTC welcome modal #595

Merged
merged 1 commit into from
Aug 17, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/Modal/tBTC/NewTBTCApp.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ const NewTBTCAppBase: FC<BaseModalProps> = ({ closeModal }) => {
<BodyLg mb="12" color="gray.500">
Take note of the following before you proceed.
</BodyLg>
<Flex justifyContent="center">
<Flex justifyContent="center" px="10">
<TakeNoteList size="sm" />
</Flex>
<BodySm mt="4.5rem" px="4" textAlign="center" color="gray.500">
Expand Down
13 changes: 12 additions & 1 deletion src/components/tBTC/TakeNoteList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ export const TakeNoteList: FC<{ size?: "sm" | "md" }> = ({ size = "md" }) => {
<Box as="span" color="brand.500">
~ 1 to 3 hours
</Box>{" "}
after you initiate minting.
after you initiate minting, depending on your deposited amount.
</BodyComponent>
</ListItemWithIcon>
</List>
Expand All @@ -60,6 +60,17 @@ export const TakeNoteList: FC<{ size?: "sm" | "md" }> = ({ size = "md" }) => {
</ListItemWithIcon>
</List>
</ListItem>
<ListItem>
<LabelComponent mb="2">Bridging back btc is LIVE</LabelComponent>
<List spacing="2">
<ListItemWithIcon>
<BodyComponent>
You can bridge your BTC back whenever you want. Redemptions are
now live.
</BodyComponent>
</ListItemWithIcon>
</List>
</ListItem>
</List>
)
}
Loading