diff --git a/android/app/build.gradle b/android/app/build.gradle index d7ebc9b..8c7b951 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -8,8 +8,8 @@ android { applicationId "com.compassconnections.app" minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion - versionCode 36 - versionName "1.6.0" + versionCode 38 + versionName "1.7.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" aaptOptions { // Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps. diff --git a/web/components/bio/editable-bio.tsx b/web/components/bio/editable-bio.tsx index 262b899..b8ce74b 100644 --- a/web/components/bio/editable-bio.tsx +++ b/web/components/bio/editable-bio.tsx @@ -15,6 +15,7 @@ import {ShowMore} from 'web/components/widgets/show-more' import {NewTabLink} from 'web/components/widgets/new-tab-link' import {useT} from 'web/lib/locale' import {richTextToString} from 'common/util/parse' +import {useRouter} from "next/router"; export function BioTips({onClick}: { onClick?: () => void }) { const t = useT(); @@ -27,6 +28,13 @@ export function BioTips({onClick}: { onClick?: () => void }) { - Optional: romantic preferences, lifestyle habits, and conversation starters `); + let href = '/tips-bio' + + const router = useRouter() + if (router.pathname === '/signup') { + href += '?fromSignup=true' + } + return ( void }) {

{t('profile.bio.tips_intro', "Write a clear and engaging bio to help others understand who you are and the connections you seek. Include:")}

{tips} {t('profile.bio.tips_link', 'Read full tips for writing a high-quality bio')}
) diff --git a/web/components/email-verification-button.tsx b/web/components/email-verification-button.tsx index 250fb5b..67ede26 100644 --- a/web/components/email-verification-button.tsx +++ b/web/components/email-verification-button.tsx @@ -28,7 +28,7 @@ export function EmailVerificationButton() { } return ( - +