Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
6e55492
better show modal
heryandjaruma Jun 23, 2025
0bede51
add filtering in application accept modal
heryandjaruma Jun 23, 2025
759e7f2
add loading spinner and better row ui
heryandjaruma Jun 23, 2025
13039dd
add lucide dependency
heryandjaruma Jun 23, 2025
4262592
better app row ui
heryandjaruma Jun 23, 2025
31d1b38
add preview in accepting application
heryandjaruma Jun 23, 2025
36eece2
minor fix on ui
heryandjaruma Jun 23, 2025
b715783
add select and unselect all
heryandjaruma Jun 23, 2025
59c733c
add better ui to accept applications
heryandjaruma Jun 23, 2025
ddd9a6b
better confirmation modal
heryandjaruma Jun 23, 2025
414c3b5
add react hot toast dependency
heryandjaruma Jun 24, 2025
490f1c9
init function bulk accept
heryandjaruma Jun 24, 2025
369a570
add filter
heryandjaruma Jun 24, 2025
66e6fff
add sort
heryandjaruma Jun 24, 2025
fe964e9
fix filtering logic
heryandjaruma Jun 24, 2025
8afc6f9
proper sorting
heryandjaruma Jun 24, 2025
9bcd8e0
add finalModal
heryandjaruma Jun 24, 2025
ca1a88b
add accept application modal
heryandjaruma Jun 24, 2025
f1c6e0c
better toast
heryandjaruma Jun 24, 2025
8ad538e
better loading ui when accepting
heryandjaruma Jun 25, 2025
39f134e
Merge branch 'main' into feat/bulk-accept
heryandjaruma Jun 25, 2025
20e742c
minor fix loading
heryandjaruma Jun 25, 2025
dcca4c6
better ui for confirmation
heryandjaruma Jun 25, 2025
fc97e90
add acceptance timestamp
heryandjaruma Jun 25, 2025
26434ca
add evaluation max score
heryandjaruma Jun 25, 2025
b0f9cfa
proper submit score
heryandjaruma Jun 25, 2025
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
308 changes: 192 additions & 116 deletions app/applications/page.tsx

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { AuthProvider } from "@/contexts/AuthContext";
import ProtectedRoute from "../components/ProtectedRoute";
import Sidebar from "@/components/Sidebar";
import { inject } from "@vercel/analytics";
import { Toaster } from "react-hot-toast";

// Initialize Vercel Analytics
inject();
Expand Down Expand Up @@ -47,6 +48,7 @@ export default function RootLayout({
<link rel="manifest" href="/static/site.webmanifest" />
</head>
<body className="font-sans">
<Toaster />
<AuthProvider>
<ProtectedRoute>
<div className="min-h-screen bg-background">
Expand Down
Loading