Skip to content

Commit

Permalink
Token creation flow fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
WRadoslaw committed Mar 15, 2024
1 parent f2d54ee commit 979e2ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ Recommended values — Holders:20%, Channel: 80%."
<Controller
name="creatorReward"
control={control}
render={({ field }) => <RatioSlider {...field} max={20} step={2} />}
render={({ field }) => <RatioSlider {...field} max={14} step={2} />}
/>
</FormField>
</CrtFormWrapper>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,15 +135,15 @@ export const TokenSummaryStep = ({ setPrimaryButtonProps, form, onSuccess }: Tok
<RowBox gap={2}>
<RowBox gap={1}>
<Text variant="h300" as="span" color="colorText">
Channel:
Holders:
</Text>
<Text variant="h300" as="p" color="colorTextStrong">
{form.revenueShare}%
</Text>
</RowBox>
<RowBox gap={1}>
<Text variant="h300" as="span" color="colorText">
Holders:
Channel:
</Text>
<Text variant="h300" as="p" color="colorTextStrong">
{100 - form.revenueShare}%
Expand Down

0 comments on commit 979e2ab

Please sign in to comment.