Fix restaurant_bookings icon to Armchair (UtensilsCrossed not in iconMap)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
jtricerolph 2026-07-15 17:33:30 +00:00
parent 5673f3e80a
commit ea3a2f46ff

View file

@ -142,7 +142,7 @@ export async function initDb() {
// ON CONFLICT DO NOTHING so restarts never reset base_path/active managed by settings.
await pool.query(`
INSERT INTO apps (slug, name, description, base_path, icon, theme_color, category, active)
VALUES ('restaurant_bookings', 'Table Bookings', 'Hosted table reservation system', '/bookings', 'UtensilsCrossed', '#1a1a2e', 'Restaurant', FALSE)
VALUES ('restaurant_bookings', 'Table Bookings', 'Hosted table reservation system', '/bookings', 'Armchair', '#1a1a2e', 'Restaurant', FALSE)
ON CONFLICT (slug) DO NOTHING
`)