fix: sql syntax incompatibility with sqlite/postgresql

This commit is contained in:
juancwu 2026-05-03 23:59:37 +00:00
commit 5e00060421
4 changed files with 6 additions and 6 deletions

View file

@ -38,5 +38,5 @@ func TestHomeHandler_HomePage_Authenticated(t *testing.T) {
h.HomePage(w, req)
assert.Equal(t, http.StatusSeeOther, w.Code)
assert.Equal(t, "/app/spaces", w.Header().Get("Location"))
assert.Equal(t, "/app/home", w.Header().Get("Location"))
}