mirror of
https://github.com/marcogll/AnchorOS.git
synced 2026-03-15 15:24:29 +00:00
fix: Build Docker image, fix SelectItem empty values, add admin seed script
- Add placeholder env vars for Supabase, Stripe, and Resend in Dockerfile - Fix empty SelectItem values in POS and payroll forms - Fix missing Supabase env variables in stats route - Create seed-admin-users.sql script for Frida Lara, América de la Cruz, and Alejandra Ponce as admin users - Docker image marcogll/anchoros:test built and pushed successfully
This commit is contained in:
@@ -310,7 +310,6 @@ export default function POSSystem() {
|
||||
<SelectValue placeholder="Seleccionar cliente (opcional)" />
|
||||
</SelectTrigger>
|
||||
<SelectContent>
|
||||
<SelectItem value="">Sin cliente especificado</SelectItem>
|
||||
{customers.slice(0, 10).map(customer => (
|
||||
<SelectItem key={customer.id} value={customer.id}>
|
||||
{customer.first_name} {customer.last_name}
|
||||
|
||||
Reference in New Issue
Block a user