updated create region form
All checks were successful
Vercel Production Deployment / Deploy-Production (push) Successful in 1m26s

This commit is contained in:
christian 2024-06-02 08:14:30 +02:00
parent 2c5fcbcbdb
commit 14b14f9f26
2 changed files with 9 additions and 2 deletions

View File

@ -2,6 +2,7 @@ import { db } from "~/server/db";
export default async function AllRegions() { export default async function AllRegions() {
const allRegions = await db.query.regions.findMany(); const allRegions = await db.query.regions.findMany();
const allCountries = await db.query.countries.findMany();
return ( return (
<div className="pt-4"> <div className="pt-4">
<h1 className="text-2xl">All Regions:</h1> <h1 className="text-2xl">All Regions:</h1>
@ -9,7 +10,14 @@ export default async function AllRegions() {
<> <>
<ul> <ul>
{allRegions.map((region) => ( {allRegions.map((region) => (
<li key={region.id}>{region.name}</li> <li key={region.id}>
{region.name} -{" "}
{
allCountries.find(
(country) => country.id === region.countryId,
)?.name
}
</li>
))} ))}
</ul> </ul>
</> </>

View File

@ -11,7 +11,6 @@ import {
SelectValue, SelectValue,
} from "~/components/ui/select"; } from "~/components/ui/select";
import { useFormState } from "react-dom"; import { useFormState } from "react-dom";
import { init } from "next/dist/compiled/webpack/webpack";
interface Country { interface Country {
id: string; id: string;