Skip to content

Commit

Permalink
v3.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
swansontec committed Apr 2, 2024
2 parents c2f20e8 + 0676640 commit 70dbf80
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## 3.7.1 (2024-04-02)

- fixed: Show the `landingScreenText` when provided.

## 3.7.0 (2024-03-27)

- changed: Move "password match" check to the "Password Requirements" Card
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "edge-login-ui-rn",
"version": "3.7.0",
"version": "3.7.1",
"description": "Edge login UI components, as a React Native library",
"keywords": [
"Airbitz",
Expand Down Expand Up @@ -109,4 +109,4 @@
"react": "*",
"react-native": "*"
}
}
}
4 changes: 2 additions & 2 deletions src/components/scenes/LandingScene.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,10 +15,10 @@ import { ButtonsViewUi4 } from '../ui4/ButtonsViewUi4'

interface Props extends SceneProps<'landing'> {
branding: Branding
landingSceneText?: string
}

export const LandingScene = (props: Props) => {
const { branding } = props
const dispatch = useDispatch()
const { initialUserInfo, onLogEvent = () => {} } = useImports()

Expand Down Expand Up @@ -49,7 +49,7 @@ export const LandingScene = (props: Props) => {
<View style={styles.featureBoxContent}>
<View style={styles.featureBoxDescription}>
<Text style={styles.tagText}>
{props.landingSceneText || lstrings.landing_tagline}
{branding.landingSceneText ?? lstrings.landing_tagline}
</Text>
</View>
</View>
Expand Down

0 comments on commit 70dbf80

Please sign in to comment.