fixed psa

This commit is contained in:
2024-12-19 00:09:28 -05:00
parent fc3c346f5e
commit d03bcf5746
4 changed files with 36 additions and 2 deletions

View File

@@ -92,7 +92,7 @@ export default async function SortTable(props: any) {
<tr key={item.uuid}>
<td className="whitespace-wrap flex items-center py-4 pl-4 pr-3 text-xs font-medium text-gray-900 ">
<Image
src={item.imageUrl}
src={item.thumbUrl}
alt="A image of the product"
width="50"
height="50"

View File

@@ -29,7 +29,7 @@ export default function UserRegistration() {
try {
// Replace 'users' with your actual table name
await db.insert('users').values(formData);
await db.insert(users).values(formData);
toast({
title: 'Account created.',
description: "We've created your account successfully!",