firebase-os 1.1.9 → 1.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/App.tsx +2 -2
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firebase-os",
3
- "version": "1.1.9",
3
+ "version": "1.2.0",
4
4
  "description": "A complete Firebase-powered admin OS — one React component.",
5
5
  "type": "module",
6
6
  "main": "dist/firebase-os.cjs.js",
@@ -78,4 +78,4 @@
78
78
  "react-router-dom": ">=6",
79
79
  "firebase": ">=10"
80
80
  }
81
- }
81
+ }
package/src/App.tsx CHANGED
@@ -160,8 +160,8 @@ function AuthenticatedApp() {
160
160
  <Route path="/profile" element={<PrivateRoute><Profile /></PrivateRoute>} />
161
161
  <Route path="/dashboard" element={<PrivateRoute><Dashboard /></PrivateRoute>} />
162
162
 
163
- {/* Setup Redirect (if already done, don't show it via route) */}
164
- <Route path="/setup" element={<Navigate to="/" replace />} />
163
+ {/* Setup (accessible even after completion for reference) */}
164
+ <Route path="/setup" element={<Setup />} />
165
165
 
166
166
  {/* Dynamic Content Routing */}
167
167
  <Route path="*" element={<DynamicPage />} />