Skip to content

Commit

Permalink
less errors
Browse files Browse the repository at this point in the history
  • Loading branch information
c0repwn3r committed Nov 9, 2024
1 parent fc5caaa commit fc9362e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scheddy",
"version": "0.0.10",
"version": "0.0.11",
"type": "module",
"scripts": {
"dev": "vite dev",
Expand Down
2 changes: 2 additions & 0 deletions src/routes/(authed)/dash/cal/+page.server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ export const load: PageServerLoad = async ({ cookies, params }) => {
mentorSessions.push(sess);
}

console.log(mentorSessions);

return {
user,
mentorSessions
Expand Down
1 change: 0 additions & 1 deletion src/routes/(authed)/dash/cal/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@
<TableRow>
<TableColumn
>{DateTime.fromISO(sess.session.start)
.setZone(data.mentor.timezone)
.toLocaleString(DateTime.DATETIME_MED_WITH_WEEKDAY)}</TableColumn
>
<TableColumn>{data.typesMap[sess.session.type]}</TableColumn>
Expand Down

0 comments on commit fc9362e

Please sign in to comment.