chore: changed loading text (#898)

This commit is contained in:
Rhea Jain 2023-04-19 20:52:52 +05:30 committed by GitHub
parent c5206a7792
commit ebce364104
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ export const InviteMembers: React.FC<Props> = ({ setStep, workspace }) => {
<div className="w-full">
<MultiInput
name="emails"
placeholder="Enter co-workers email id"
placeholder="Enter co-workers Email IDs"
watch={watch}
setValue={setValue}
className="w-full"

View File

@ -74,7 +74,7 @@ const ProjectAuthorizationWrapped: React.FC<Props> = ({
{loading ? (
<div className="h-full w-full grid place-items-center p-4">
<div className="flex flex-col items-center gap-3 text-center">
<h3 className="text-xl">Setting up your project...</h3>
<h3 className="text-xl">Loading your project...</h3>
<Spinner />
</div>
</div>

View File

@ -72,7 +72,7 @@ export const WorkspaceAuthorizationLayout: React.FC<Props> = ({
return (
<div className="h-screen grid place-items-center p-4">
<div className="flex flex-col items-center gap-3 text-center">
<h3 className="text-xl">Setting up your workspace...</h3>
<h3 className="text-xl">Loading your workspace...</h3>
<Spinner />
</div>
</div>