-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Another round of bug fixing #1055
Conversation
@@ -259,7 +259,7 @@ extension ResourceBalanceView { | |||
VStack(alignment: .leading, spacing: .zero) { | |||
FungibleView( | |||
thumbnail: .poolUnit(viewState.poolIcon), | |||
caption1: viewState.poolName ?? L10n.TransactionReview.poolUnits, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No fallback for poolUnits name
@@ -465,7 +465,7 @@ extension ResourceBalanceView { | |||
} | |||
|
|||
private var useSpacer: Bool { | |||
amount != nil || fallback != nil | |||
amount != nil || fallback != nil || caption1 == nil |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Spacer required for the case of missing caption1 and the checkmark selection needs to be disaplyed.
@@ -96,7 +110,7 @@ extension SubmitTransaction { | |||
viewStore.send(.appeared) | |||
} | |||
.alert(store: store.scope(state: \.$dismissTransactionAlert, action: { .view(.dismissTransactionAlert($0)) })) | |||
.interactiveDismissDisabled(true) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably was left in after some local testing
Another small round of bug fixing for this release, including the above tickets, but also other reported in the slack channel.