fixed 4 errors

This commit is contained in:
2024-12-13 14:22:24 -05:00
parent 3f5a8288d5
commit 5f3fcd86dd
4 changed files with 16 additions and 6 deletions

View File

@@ -1,9 +1,9 @@
import { getPSA, getLowerBuildKits, getProductType} from "@queries/PSA";
import { psa } from '@db/schema/Psa';
import partTypes from 'src/data/parts_cats.json';
import styles from '../styles.module.css';
import styles from '../styles.module.css';
export default async function GripsPage() {
export default async function PartsPage() {
const psa = await getProductType(partTypes["AR PARTS"]);
return (

View File

@@ -10,8 +10,8 @@ export default function RootLayout({
children: React.ReactNode
}) {
return (
<html lang="en">
<body>{children}</body>
</html>
<>
{children}
</>
)
}