Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions .env

This file was deleted.

3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,5 @@ package-lock.json

.DS_Store

.vscode/
.vscode/
.env
9 changes: 5 additions & 4 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ import CreateLocation from "./components/tabs/admin/events/FormInputs/CreateLoca

// Initialized the Firebase app through the credentials provided
export const app = initializeApp({
apiKey: "AIzaSyCsukUZtMkI5FD_etGfefO4Sr7fHkZM7Rg",
apiKey: process.env.REACT_APP_FIREBASE_API_KEY,
authDomain: "auth.hexlabs.org",
});
export const HEXATHON_ID = String(process.env.REACT_APP_HEXATHON_ID);
Expand Down Expand Up @@ -87,10 +87,11 @@ export const App = () => {
<Route path="/tracks-challenges" element={<TracksTab />} />
{/* <Route path="/schedule" element={<ScheduleTab virtual={false} />} /> */}
{/* <Route path="/mentors" element={<MentorTab />} /> */}
<Route path="/swag" element={<SwagShop />}/>
<Route path="/swag" element={<SwagShop />} />
{/* <Route path="/workshops" element={<WorkshopTab />} /> */}
// TODO: Change the Create Item route to be /admin/items/new after adding in an admin page to view all items
<Route path="/hardware" element={<HardwareCheckout />}/>
// TODO: Change the Create Item route to be /admin/items/new after adding in an admin page
to view all items
<Route path="/hardware" element={<HardwareCheckout />} />
<Route path="/hardware/items/new" element={<CreateItem />} />
<Route path="/sponsor" element={<SponsorTab />} />
<Route path="/accomodations" element={<AccommodationsTab />} />
Expand Down