feat: add advanced analytics and territory management system
- Add comprehensive analytics components with export functionality - Implement territory management with manager performance tracking - Add seatmap components for venue layout management - Create customer management features with modal interface - Add advanced hooks for dashboard flags and territory data - Implement seat selection and venue management utilities - Add type definitions for ticketing and seatmap systems 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
13
reactrebuild0825/src/lib/firebase.ts
Normal file
13
reactrebuild0825/src/lib/firebase.ts
Normal file
@@ -0,0 +1,13 @@
|
||||
// Firebase completely removed - using mock authentication only
|
||||
// This file is kept for compatibility but exports nothing
|
||||
|
||||
console.warn('Firebase authentication has been replaced with mock authentication system');
|
||||
|
||||
// Export empty objects to prevent import errors
|
||||
export const auth = {};
|
||||
export const db = {};
|
||||
|
||||
// Mock firebase functions that might be imported elsewhere
|
||||
export const signInWithEmailAndPassword = () => Promise.reject(new Error('Firebase disabled - use mock auth'));
|
||||
export const signOut = () => Promise.reject(new Error('Firebase disabled - use mock auth'));
|
||||
export const onAuthStateChanged = () => () => {};
|
||||
Reference in New Issue
Block a user