Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
51 commits
Select commit Hold shift + click to select a range
c9f5e39
commits
christianhelp Oct 5, 2025
712a37b
updates db and adds email + password sign up
christianhelp Oct 19, 2025
4d1c40f
Adds bugs to todos
christianhelp Oct 19, 2025
7c585f5
ensures protection of sign in and sign up routes
christianhelp Oct 19, 2025
717a3f9
fix providers setup
christianhelp Oct 21, 2025
5969492
fixes up stuff
christianhelp Oct 24, 2025
b68a3a6
Adds sidebar
christianhelp Oct 24, 2025
1f5fe76
whole bunch of other commits
christianhelp Oct 25, 2025
dae49d6
formatter
christianhelp Oct 25, 2025
e8ace99
changes idk
christianhelp Oct 25, 2025
7a038f5
Merge remote-tracking branch 'origin/main' into other-fixes-n-stuff
christianhelp Oct 25, 2025
0a7ec04
whole lotta stuff
christianhelp Nov 2, 2025
05dd665
formatter
christianhelp Nov 2, 2025
0b79b23
modifies user button
christianhelp Nov 9, 2025
41a5921
adds a bunch of other stuff like theme switcher I think
christianhelp Nov 25, 2025
ee5abcf
I suck at commit messages
christianhelp Dec 17, 2025
23aca39
More commits and stuff
christianhelp Jan 18, 2026
c3ab36d
formatter + stuff
christianhelp Jan 20, 2026
e70e7bb
More commits for formatter and fixes mutations
christianhelp Jan 20, 2026
3c7bc60
updates and fixes imports
christianhelp Jan 25, 2026
a0ee072
formatter
christianhelp Jan 25, 2026
b1998f0
Fixes based on Code Rabbit suggestions (I should pay more attention)
christianhelp Feb 14, 2026
0c2c18c
formatter
christianhelp Feb 14, 2026
0c1aa2f
Updates for more feedback. The bot is cooking ngl.
christianhelp Feb 15, 2026
3bf9077
More feedback
christianhelp Feb 15, 2026
b40414d
fixes
christianhelp Feb 15, 2026
47befbd
more fixes
christianhelp Feb 16, 2026
a849513
Updates to ignore Shad cn components and route tree
christianhelp Feb 16, 2026
f1eaf42
Quick update of feedback for join
christianhelp Feb 16, 2026
25c5458
add todo for extra variables logged that can be nulled
christianhelp Feb 16, 2026
4c5ad4d
Removes undeeded TODOs and adds bugs to a few
christianhelp Feb 16, 2026
d39f303
Renames constants to be screaming snake case
christianhelp Feb 16, 2026
4beff4f
Renames all of the errors
christianhelp Feb 16, 2026
9f47800
Updates all of the routes to have the correct response format
christianhelp Feb 16, 2026
bb02ad9
Quick updates
christianhelp Feb 16, 2026
961a24e
Merge commit '48ca5a82cf10a9393219cdfdd12668dadf95377d' into rework-a…
christianhelp Feb 17, 2026
388c1f6
formatter
christianhelp Feb 17, 2026
e8a7fb8
Small updates
christianhelp Feb 17, 2026
fa08521
more updates or things I missed
christianhelp Feb 17, 2026
a8fcb0c
More updates
christianhelp Feb 17, 2026
051bdef
More fixes
christianhelp Feb 17, 2026
af0fd28
Fixes return for user on admin
christianhelp Feb 17, 2026
2d96af2
whoops
christianhelp Feb 17, 2026
ee9df94
fix type thing
christianhelp Feb 17, 2026
eadef63
Removes old comment
christianhelp Feb 17, 2026
fb34f1a
Adds builder and bumps node versions to LTS
christianhelp Feb 17, 2026
c83955e
Merge remote-tracking branch 'origin/main' into adds-builder-presubmit
christianhelp Feb 17, 2026
e38a67c
test this out
christianhelp Feb 17, 2026
0c6a3e6
Test
christianhelp Feb 17, 2026
11c2340
Renames due to weird case sensitive issue
christianhelp Feb 17, 2026
58aa240
Bumps versions
christianhelp Feb 17, 2026
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
49 changes: 49 additions & 0 deletions .github/workflows/presubmits.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
# .github/workflows/presubmits.yml

name: Presubmits

on: [pull_request]

jobs:
prettier-check:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v6

- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "24"

- name: Install pnpm
run: |
npm install -g pnpm

- name: Install dependencies
run: pnpm install

- name: Run Prettier check
run: pnpm run format-check
builder:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v6

- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "24"

- name: Install pnpm
run: |
npm install -g pnpm

- name: Install dependencies
run: pnpm install

- name: Run Builder
run: pnpm run build
28 changes: 0 additions & 28 deletions .github/workflows/prettier.yml

This file was deleted.

2 changes: 1 addition & 1 deletion apps/web/src/routes/__root.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { isProtectedRoute } from "@/lib/functions/auth";
import type { RouterContext } from "@/lib/types";
import { Providers } from "@/providers";
import { Navbar } from "@/components/shared/Navbar/navbar";
import ErrorComponent from "@/components/shared/Error";
import ErrorComponent from "@/components/shared/ErrorFallback";

export const Route = createRootRouteWithContext<RouterContext>()({
beforeLoad: async ({ location }) => {
Expand Down