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 && } - + ) }