shares now open in a new tab

This commit is contained in:
polaris
2024-06-29 15:25:43 -04:00
parent c784e8808e
commit 4e3938e87e
7 changed files with 40 additions and 27 deletions

View File

@ -11,13 +11,11 @@ import {
CardTitle,
} from "@/components/ui/card";
import { Label } from "@/components/ui/label";
import { toast, useToast } from "@/components/ui/use-toast";
import { toast } from "@/components/ui/use-toast";
import { signUp } from "./action";
import { useState } from "react";
export default function SignUpForm() {
const [error, setError] = useState<string>("");
const submit = async (data: FormData) => {
const { error } = await signUp(data);