Skip to content

Commit

Permalink
Merge pull request #57 from BeamFi/dev
Browse files Browse the repository at this point in the history
[CON-21 New Meeting] Add tooltip in Meeting ID title and extra notes
  • Loading branch information
kinwo authored Apr 5, 2023
2 parents 2ff2aec + 478a685 commit 99f0a5b
Showing 1 changed file with 20 additions and 7 deletions.
27 changes: 20 additions & 7 deletions ui/components/beam/screen/BeamNewMeeting.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ import {
Spacer,
Stack,
Text,
Tooltip,
useDisclosure,
useToast,
VStack,
Expand Down Expand Up @@ -89,7 +90,10 @@ const HeadlineStack = ({ hashtags }: Props) => {
color="dark_black"
>
<ListItem>
Fill out the payment details and the Zoom Meeting details
Fill out the payment details and the Zoom Meeting ID and password.
<Text fontStyle="italic">
(Do not enter the Zoom meeting ID previously used with BeamFi)
</Text>
</ListItem>
<ListItem>
Submit the form and get your unique Beam Meeting link
Expand Down Expand Up @@ -127,7 +131,7 @@ const HeadlineStack = ({ hashtags }: Props) => {
/>
</Link>
<Link
href="https://beamfi.freshdesk.com/support/solutions/articles/51000335010-beamfi-zoom-app-user-guide"
href="https://beamfi.freshdesk.com/support/solutions/folders/51000336019"
isExternal
>
Learn More
Expand Down Expand Up @@ -362,7 +366,7 @@ export const BeamNewMeeting = ({ setBgColor, setHashtags }) => {
themeColor="black_5"
trackColor="black_gray"
>
<FormTitle>{tokenName} Amount:</FormTitle>
<FormTitle>{tokenName} Amount</FormTitle>
</FormNumberInput>
)}
</Field>
Expand All @@ -381,7 +385,7 @@ export const BeamNewMeeting = ({ setBgColor, setHashtags }) => {
}
errorMesg={form.errors.recipient}
>
<FormTitle>Your Plug Wallet:</FormTitle>
<FormTitle>Your Plug Wallet</FormTitle>
</FormInput>
)}
</Field>
Expand All @@ -391,7 +395,7 @@ export const BeamNewMeeting = ({ setBgColor, setHashtags }) => {
w={{ base: "95%", md: "80%" }}
spacing="12px"
>
<FormTitle textAlign="left">Duration:</FormTitle>
<FormTitle textAlign="left">Duration</FormTitle>

<HStack w="100%">
<Text
Expand Down Expand Up @@ -441,7 +445,16 @@ export const BeamNewMeeting = ({ setBgColor, setHashtags }) => {
}
errorMesg={form.errors.meetingId}
>
<FormTitle>Zoom Meeting ID:</FormTitle>
<FormTitle>
<Tooltip
label="Generate a new Meeting ID. Do not enter the Zoom meeting ID previously used with BeamFi."
placement="right-end"
bg="gray.100"
color="black"
>
Zoom Meeting ID
</Tooltip>
</FormTitle>
</FormInput>
)}
</Field>
Expand All @@ -461,7 +474,7 @@ export const BeamNewMeeting = ({ setBgColor, setHashtags }) => {
}
errorMesg={form.errors.meetingPassword}
>
<FormTitle>Zoom Meeting Password:</FormTitle>
<FormTitle>Zoom Meeting Password</FormTitle>
</FormInput>
)}
</Field>
Expand Down

0 comments on commit 99f0a5b

Please sign in to comment.