From 7447b5acff3c8397d9468cca6f68c0f9c85789ac Mon Sep 17 00:00:00 2001 From: "autofix-ci[bot]" <114827586+autofix-ci[bot]@users.noreply.github.com> Date: Thu, 14 Mar 2024 05:28:43 +0000 Subject: [PATCH] [autofix.ci] apply automated fixes --- .../auth/signup/components/admin-register.tsx | 65 ++++++++++++------- .../app/auth/signup/components/signup.tsx | 4 +- .../signup/components/user-register-form.tsx | 11 ++-- 3 files changed, 48 insertions(+), 32 deletions(-) diff --git a/ee/tabby-ui/app/auth/signup/components/admin-register.tsx b/ee/tabby-ui/app/auth/signup/components/admin-register.tsx index 35cf0b0dda60..0e4bf0aa3f62 100644 --- a/ee/tabby-ui/app/auth/signup/components/admin-register.tsx +++ b/ee/tabby-ui/app/auth/signup/components/admin-register.tsx @@ -1,27 +1,33 @@ -"use client"; +'use client' -import { useState } from "react"; +import { useState } from 'react' import { useRouter } from 'next/navigation' -import { cn } from "@/lib/utils"; +import { cn } from '@/lib/utils' +import { Button } from '@/components/ui/button' -import { Button } from "@/components/ui/button" import { UserAuthForm } from './user-register-form' import './admin-register.css' -export default function AdminRegister () { +export default function AdminRegister() { const router = useRouter() const [step, setStep] = useState(1) return ( -
This will allow you to invite team members and manage your instance.
-Your instance will be secured, only registered users can access it.
-- To begin collaborating with your team, please open the dashboard and invite members to join your instance. + To begin collaborating with your team, please open the dashboard and + invite members to join your instance.
-