Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
Address PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenHeaps committed Oct 10, 2023
1 parent 6b058b8 commit 8ff2feb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,8 @@ private struct PortfolioHeaderButton: View {
.overlay(
Image(braveSystemName: style.iconName)
.foregroundColor(.white)
.dynamicTypeSize(.large)
.font(.title3.weight(.semibold))
.dynamicTypeSize(...DynamicTypeSize.xLarge)
)
Text(style.label)
.font(.footnote.weight(.semibold))
Expand Down
2 changes: 1 addition & 1 deletion Sources/BraveWallet/Crypto/Stores/PortfolioStore.swift
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ struct BalanceDifference: Equatable {
public class PortfolioStore: ObservableObject, WalletObserverStore {
/// The dollar amount of your portfolio
@Published private(set) var balance: String = "$0.00"
///
/// Balance difference used to display difference between first point on the graph and current balance.
@Published private(set) var balanceDifference: BalanceDifference?
/// The users visible fungible token groups.
@Published private(set) var assetGroups: [AssetGroupViewModel] = []
Expand Down

0 comments on commit 8ff2feb

Please sign in to comment.