Skip to content

Commit

Permalink
Merge pull request #45 from LakshayGMZ/devel
Browse files Browse the repository at this point in the history
Devel
  • Loading branch information
LakshayGMZ authored Jun 1, 2024
2 parents e0ff559 + ae8dbdc commit d94df72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app/lib/data.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ export const columnsOverall: ColumnDef<StudentDataJoined>[] = [
</Button>
);
},
cell: ({row}) => <div className="lowercase">{row.original.enrollment}</div>,
cell: ({row}) => <a href={"/student/" + row.original.enrollment} className="lowercase">{row.original.enrollment}</a>,
},
{
accessorKey: "name",
Expand Down Expand Up @@ -116,7 +116,7 @@ export const columnsSem: ColumnDef<StudentDataJoined>[] = [
</Button>
);
},
cell: ({row}) => <div className="lowercase">{row.original.enrollment}</div>,
cell: ({row}) => <a href={"/student/" + row.original.enrollment} className="lowercase">{row.original.enrollment}</a>,
},
{
accessorKey: "name",
Expand Down
1 change: 0 additions & 1 deletion middleware.ts
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@ export async function middleware(request: NextRequest) {
}
}
if (some(["localhost", "www.ipusenpai.in", "devel.ipusenpai.in"], i => i === request.nextUrl.hostname)) {
console.log("GUGUGAGA")
await postData(request.url);
}
}

0 comments on commit d94df72

Please sign in to comment.