Skip to content
This repository has been archived by the owner on Jun 16, 2022. It is now read-only.

bugfix/LIVE 823 llm modal after claiming rewards has placeholder text #2266

Open
wants to merge 1 commit into
base: develop
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/RootNavigator/ClaimRewardsNavigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export default function ClaimRewardsNavigator() {
name={ScreenName.ClaimRewardsValidationSuccess}
component={ValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand All @@ -66,7 +66,7 @@ export default function ClaimRewardsNavigator() {
<Stack.Screen
name={ScreenName.ClaimRewardsValidationError}
component={ValidationError}
options={{ headerTitle: null }}
options={{ headerTitle: "" }}
/>
</Stack.Navigator>
);
Expand Down
2 changes: 1 addition & 1 deletion src/components/RootNavigator/FreezeNavigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export default function FreezeNavigator() {
name={ScreenName.FreezeValidationSuccess}
component={ValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand Down
2 changes: 1 addition & 1 deletion src/components/RootNavigator/UnfreezeNavigator.js
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export default function UnfreezeNavigator() {
name={ScreenName.UnfreezeValidationSuccess}
component={ValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand Down
2 changes: 1 addition & 1 deletion src/families/cosmos/ClaimRewardsFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ function ClaimRewardsFlow() {
options={{
headerLeft: null,
headerRight: null,
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
}}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/families/cosmos/DelegationFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ function DelegationFlow() {
options={{
headerLeft: null,
headerRight: null,
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
}}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/families/cosmos/RedelegationFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ function RedelegationFlow() {
options={{
headerLeft: null,
headerRight: null,
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
}}
/>
Expand Down
4 changes: 2 additions & 2 deletions src/families/cosmos/UndelegationFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function UndelegationFlow() {
name={ScreenName.CosmosUndelegationValidationError}
component={UndelegationValidationError}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
}}
/>
Expand All @@ -86,7 +86,7 @@ function UndelegationFlow() {
component={UndelegationValidationSuccess}
options={{
headerLeft: null,
headerTitle: null,
headerTitle: "",
headerRight: null,
gestureEnabled: false,
}}
Expand Down
2 changes: 1 addition & 1 deletion src/families/polkadot/BondFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ function BondFlow() {
name={ScreenName.PolkadotBondValidationSuccess}
component={ValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand Down
2 changes: 1 addition & 1 deletion src/families/polkadot/NominateFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function NominateFlow() {
name={ScreenName.PolkadotNominateValidationSuccess}
component={ValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand Down
2 changes: 1 addition & 1 deletion src/families/polkadot/RebondFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function RebondFlow() {
name={ScreenName.PolkadotRebondValidationSuccess}
component={ValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand Down
2 changes: 1 addition & 1 deletion src/families/polkadot/SimpleOperationFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ function SimpleOperationFlow() {
name={ScreenName.PolkadotSimpleOperationValidationSuccess}
component={ValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand Down
2 changes: 1 addition & 1 deletion src/families/polkadot/UnbondFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function UnbondFlow() {
name={ScreenName.PolkadotUnbondValidationSuccess}
component={ValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand Down
2 changes: 1 addition & 1 deletion src/families/tron/VoteFlow/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ function VoteFlow() {
name={ScreenName.VoteValidationSuccess}
component={VoteValidationSuccess}
options={{
headerTitle: null,
headerTitle: "",
gestureEnabled: false,
headerLeft: null,
headerRight: null,
Expand Down
2 changes: 1 addition & 1 deletion src/screens/WalletConnect/Connect.js
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default function Connect({ route, navigation }: Props) {
navigation.setOptions({
...opts,
title: "Wallet Connect",
headerTitle: null,
headerTitle: "",
});
}
}, [wcContext, navigation]);
Expand Down