mirror of
https://github.com/lukevella/rallly.git
synced 2025-07-27 05:07:50 +02:00
⬆️ Upgrade to biome 2 (#1825)
This commit is contained in:
parent
56c74d5024
commit
9be12f28d9
141 changed files with 663 additions and 790 deletions
|
@ -1,8 +1,4 @@
|
|||
"use client";
|
||||
import { Trans } from "@/components/trans";
|
||||
import { useSafeAction } from "@/features/safe-action/client";
|
||||
import { createSpaceAction } from "@/features/spaces/actions";
|
||||
import { useTranslation } from "@/i18n/client";
|
||||
import { zodResolver } from "@hookform/resolvers/zod";
|
||||
import { Button } from "@rallly/ui/button";
|
||||
import {
|
||||
|
@ -26,6 +22,10 @@ import { Input } from "@rallly/ui/input";
|
|||
import { toast } from "@rallly/ui/sonner";
|
||||
import { useForm } from "react-hook-form";
|
||||
import { z } from "zod";
|
||||
import { Trans } from "@/components/trans";
|
||||
import { useSafeAction } from "@/features/safe-action/client";
|
||||
import { createSpaceAction } from "@/features/spaces/actions";
|
||||
import { useTranslation } from "@/i18n/client";
|
||||
|
||||
const newSpaceFormSchema = z.object({
|
||||
name: z.string().min(1).max(100),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue