From 6d5ee7b53cf9992716e259a93953932dee8a5f97 Mon Sep 17 00:00:00 2001 From: Bruno Bernardino Date: Sat, 21 Feb 2026 07:18:04 +0000 Subject: [PATCH] Fix logout page typo Fixes #148 --- docker-compose.yml | 2 +- routes.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docker-compose.yml b/docker-compose.yml index 23db78a..82e9250 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,6 +1,6 @@ services: website: - image: ghcr.io/bewcloud/bewcloud:v4.0.0 + image: ghcr.io/bewcloud/bewcloud:v4.0.1 # NOTE: uncomment below (and comment above) only if you pulled the repo and want to build the image locally # build: # context: . diff --git a/routes.ts b/routes.ts index 748c0aa..c885413 100644 --- a/routes.ts +++ b/routes.ts @@ -332,7 +332,7 @@ const routes: Routes = { index: createPageRouteHandler('index.ts', '/'), login: createPageRouteHandler('login.tsx', '/login'), signup: createPageRouteHandler('signup.ts', '/signup'), - logout: createPageRouteHandler('login.ts', '/logout'), + logout: createPageRouteHandler('logout.ts', '/logout'), caldav: createPageRouteHandler('caldav.ts', '/caldav/:path*{/}?'), calendar: createPageRouteHandler('calendar.ts', '/calendar'), calendars: createPageRouteHandler('calendars.ts', '/calendars'),