Compare commits

..

3 Commits

Author SHA1 Message Date
534203b47e Merge pull request 'fix: path to handler' (#11) from develop into master
All checks were successful
Backend deploy / deploy-backend (push) Successful in 58s
Frontend deploy / deploy-frontend (push) Successful in 1m45s
Reviewed-on: #11
2026-02-14 20:42:41 +00:00
5d8b271da2 Merge branch 'master' into develop
All checks were successful
Backend ci / build (pull_request) Successful in 3m32s
2026-02-14 20:40:24 +00:00
d3m0k1d
af84137f31 fix: path to handler
All checks were successful
Backend ci / build (pull_request) Successful in 3m40s
2026-02-14 23:39:43 +03:00

View File

@@ -24,7 +24,7 @@ export default function Navigation() {
return;
}
const response = await fetch("/api/v1/auth/session", {
const response = await fetch("/api/v1/session", {
headers: {
Authorization: `Bearer ${token}`,
},