diff --git a/internal/routes/routes.go b/internal/routes/routes.go index ae4cd3b..b63ba9e 100644 --- a/internal/routes/routes.go +++ b/internal/routes/routes.go @@ -52,7 +52,7 @@ func SetupRoutes(a *app.App) http.Handler { // ==================================================================================== mux.HandleFunc("GET /auth/onboarding", middleware.RequireAuth(auth.OnboardingPage)) - mux.HandleFunc("POST /auth/onboarding", authRateLimiter(middleware.RequireAuth(auth.CompleteOnboarding))) + mux.HandleFunc("POST /auth/onboarding", middleware.RequireAuth(auth.CompleteOnboarding)) mux.HandleFunc("GET /app/dashboard", middleware.RequireAuth(dashboard.DashboardPage)) mux.HandleFunc("POST /app/spaces", middleware.RequireAuth(dashboard.CreateSpace))