Prettier format pending files

This commit is contained in:
Builder.io 2025-08-06 02:15:39 +00:00
parent 2f0e3ddc9c
commit d47d9329b3
2 changed files with 1 additions and 2 deletions

View file

@ -7,7 +7,7 @@ const supabaseAnonKey = import.meta.env.VITE_SUPABASE_ANON_KEY;
// Validate required environment variables
if (!supabaseUrl || !supabaseAnonKey) {
throw new Error(
"Missing Supabase environment variables. Please configure VITE_SUPABASE_URL and VITE_SUPABASE_ANON_KEY"
"Missing Supabase environment variables. Please configure VITE_SUPABASE_URL and VITE_SUPABASE_ANON_KEY",
);
}

View file

@ -16,6 +16,5 @@ export function createServer() {
res.json({ message: ping });
});
return app;
}