diff --git a/app/auth.server.ts b/app/auth.server.ts
index 11088c8c..983984cf 100644
--- a/app/auth.server.ts
+++ b/app/auth.server.ts
@@ -97,7 +97,6 @@ if (
userAgent: "Haddock3WebApp",
},
async ({ profile }) => {
- // TODO store users display name in database for more personal greeting
const primaryEmail = profile.emails[0].value;
const photo = profile.photos[0].value ?? undefined;
const userId = await oauthregister(primaryEmail, photo);
@@ -181,7 +180,6 @@ if (
});
const profile = await profileResponse.json();
const emails = await this.userEmails(profile.sub);
- // TODO store Orcid id into database
return {
...profile,
emails,
diff --git a/app/routes/profile.tsx b/app/routes/profile.tsx
index 26ec82da..20dae2fb 100644
--- a/app/routes/profile.tsx
+++ b/app/routes/profile.tsx
@@ -90,15 +90,6 @@ export default function Page() {
setTheme(t === "" ? null : (t as Theme));
}}
>
- {/*
- TODO system is not yet supported by remix-themes,
- but issue by author was created on 2 feb 2024.
-
-