Skip to content

Instantly share code, notes, and snippets.

View FleetAdmiralJakob's full-sized avatar
🎯
Focusing

Jakob Rössner FleetAdmiralJakob

🎯
Focusing
View GitHub Profile
{
"name": "chat-io",
"version": "0.1.0",
"private": true,
"type": "module",
"scripts": {
"build": "next build",
"dev": "npm-run-all --parallel next:dev convex:dev ",
"convex:dev": "convex dev --tail-logs",
"next:dev": "next dev",
@FleetAdmiralJakob
FleetAdmiralJakob / signin-form.tsx
Created March 30, 2024 18:31
shadcn/ui error message
"use client";
import { zodResolver } from "@hookform/resolvers/zod";
import { useForm } from "react-hook-form";
import { z } from "zod";
import { Button } from "~/components/ui/button";
import {
Form,
FormControl,