Skip to content

Commit

Permalink
bro
Browse files Browse the repository at this point in the history
  • Loading branch information
sritanmotati committed Feb 13, 2025
1 parent 695aa58 commit c0eeede
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion backend/Platform/urls.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
path("accounts/", include("accounts.urls", namespace="oauth2_provider")),
path("options/", include("options.urls", namespace="options")),
path("identity/", include("identity.urls", namespace="identity")),
path("healthbackend/", include("health.urls", namespace="health")),
path("healthbackend/", include("health.urls", namespace="healthbackend")),
path("s/", include("shortener.urls", namespace="shortener")),
path(
"openapi/",
Expand Down
2 changes: 1 addition & 1 deletion frontend/utils/auth.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export function withAuth<T>(getServerSidePropsFunc: GetServerSidePropsFunc<T>) {

if (casted.tag === "props") {
return {
props: { ...casted.props },
props: { ...casted.props, user: null } as T & AuthProps,
};
} else if (casted.tag === "notFound") {
return { notFound: casted.notFound };
Expand Down

0 comments on commit c0eeede

Please sign in to comment.