Skip to content

Commit

Permalink
Merge pull request #34 from lugvitc/main
Browse files Browse the repository at this point in the history
Close applications
  • Loading branch information
WizzyGeek authored Aug 15, 2024
2 parents ccbbb8b + 3160c43 commit bcbf322
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 91 deletions.
4 changes: 2 additions & 2 deletions src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { createBrowserRouter, createRoutesFromElements, Route, RouterProvider }
import Root from "./pages"
import NavLayout from "./components/NavLayout"
import Login from "./pages/login"
import Apply from "./pages/apply"
// import Apply from "./pages/apply"
import { useEffect, useState } from "react"
import { supabase, SessionContext } from "./supabase"
// import Book from "./pages/book"
Expand All @@ -16,7 +16,7 @@ const router = createBrowserRouter(
<Route element={<NavLayout />}>
<Route path="/" element={<Root />} />
<Route path="auth" element={<Login />} />
<Route path="apply" element={<Apply />} />
{/* <Route path="apply" element={<Apply />} /> */}
{/* <Route path="book" element={<Book />} /> */}
<Route path="admin" element={<Level />} />
{/* <Route path="result" element={<Result />} /> */}
Expand Down
87 changes: 0 additions & 87 deletions src/Culture.md

This file was deleted.

Binary file removed src/grid.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion src/pages/book.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ function SlotSelect({ap, rawSlots}: {ap: App, rawSlots: Slot[]}) {
<div>No slots left, please contact us.</div>
)
else return (
<div>You were shortlisted, check back later to book your slot</div>
<div>We are yet to release the result for this department</div>
)
}

Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import Card from "../components/Card";

import "./index.scss";

export const rec_open = true;
export const rec_open = false;
export const booking = !rec_open && false;
export const results = !rec_open && !booking && false;

Expand Down

0 comments on commit bcbf322

Please sign in to comment.