Skip to content

Readme suggestions #1

@msimonc

Description

@msimonc

CSV upload works after doing:

  • paste postgres url directly into schema.prisma
  • npx prisma db push - inits postgres

To fix Hydration Mismatch (only happens after file upload): removed metadata and added this to layout.tsx:

"use client"
...
  const [isClient, setIsClient] = useState(false);
  useEffect(() => {
    setIsClient(true);
  }, []);
  if (!isClient) return null;

(the first reply was in Hinglish :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions