From 66800d949bf37e4aa274fd85ce08e6bc7744590d Mon Sep 17 00:00:00 2001 From: MartinBraquet Date: Sat, 7 Mar 2026 00:24:22 +0100 Subject: [PATCH] Hot fix undefined links --- android/app/build.gradle | 2 +- web/components/optional-profile-form.tsx | 2 +- web/components/profile-about.tsx | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index b5c2a8ba..85eb9ffd 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -11,7 +11,7 @@ android { applicationId "com.compassconnections.app" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 57 + versionCode 58 versionName "1.11.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { diff --git a/web/components/optional-profile-form.tsx b/web/components/optional-profile-form.tsx index 9145f5c6..f69e2a1c 100644 --- a/web/components/optional-profile-form.tsx +++ b/web/components/optional-profile-form.tsx @@ -904,7 +904,7 @@ export const OptionalProfileUserForm = (props: { {/**/}
- {Object.entries(profile.links as Socials) + {Object.entries((profile.links ?? {}) as Socials) .filter(([_, value]) => value != null) .map(([platform, value]) => ( diff --git a/web/components/profile-about.tsx b/web/components/profile-about.tsx index 7f26a06e..1a9be8fe 100644 --- a/web/components/profile-about.tsx +++ b/web/components/profile-about.tsx @@ -172,7 +172,7 @@ export default function ProfileAbout(props: { {!isCurrentUser && } - + ) }