fix: Clarify separate billing on workspaces

This commit is contained in:
Tom Moor
2023-08-21 22:27:04 -04:00
parent 8f86eadc5d
commit aada5c20cd
2 changed files with 25 additions and 16 deletions

View File

@@ -5,6 +5,7 @@ import User from "~/models/User";
import Button from "~/components/Button";
import Flex from "~/components/Flex";
import Input from "~/components/Input";
import Notice from "~/components/Notice";
import Text from "~/components/Text";
import useStores from "~/hooks/useStores";
import useToasts from "~/hooks/useToasts";
@@ -46,17 +47,14 @@ function TeamNew({ user }: Props) {
return (
<>
<form onSubmit={handleSubmit}>
<Text type="secondary">
<Trans
defaults="Your are creating a new workspace using your current account — <em>{{email}}</em>"
values={{
email: user.email,
}}
components={{
em: <strong />,
}}
/>
</Text>
<Notice>
<Trans>
Please note that workspaces are completely separate. They can have a
different domain, settings, users, and billing.
</Trans>
</Notice>
<p />
<Flex>
<Input
@@ -69,11 +67,21 @@ function TeamNew({ user }: Props) {
flex
/>
</Flex>
<Text type="secondary">
<Trans
defaults="Your are creating a new workspace using your current account — <em>{{email}}</em>"
values={{
email: user.email,
}}
components={{
em: <strong />,
}}
/>
.{" "}
<Trans>
When your new workspace is created, you will be the admin, meaning
you will have the highest level of permissions and the ability to
invite others.
To create a workspace under another email please sign up from the
homepage
</Trans>
</Text>