Skip to content

Commit

Permalink
swiftformat workaround
Browse files Browse the repository at this point in the history
  • Loading branch information
kugel3 committed May 10, 2023
1 parent 6b8af96 commit 11849a1
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,22 +110,24 @@ private extension StoreOf<PersonaDetails> {
// MARK: - Extensions

private extension PersonaDetails.State {
#if DEBUG
var viewState: PersonaDetails.ViewState {
#if DEBUG
.init(
thumbnail: nil,
personaName: personaName,
isDappPersona: isDappPersona,
canCreateAuthKey: canCreateAuthKey
)
#else
}
#else
var viewState: PersonaDetails.ViewState {
.init(
thumbnail: nil,
personaName: personaName,
isDappPersona: isDappPersona
)
#endif
}
#endif

var personaName: String {
switch mode {
Expand Down

0 comments on commit 11849a1

Please sign in to comment.