Skip to content

Commit

Permalink
Fix Linter Errors
Browse files Browse the repository at this point in the history
  • Loading branch information
zombieobject committed Feb 23, 2024
1 parent 277b853 commit 5f9628b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -152,12 +152,10 @@ struct ConversationListView: View {
print("Error saving \(conversation.topic): \(error)")
}
case .group:
// TODO: handle
// Handle this in the future
return
}
}


}
}

Expand Down
9 changes: 4 additions & 5 deletions XMTPiOSExample/XMTPiOSExample/Views/LoginView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@
//

import SwiftUI
import Combine
import WebKit
import XMTPiOS
import WalletConnectRelay
import Combine
import SwiftUI
import WalletConnectModal
import Starscream

Expand Down Expand Up @@ -111,7 +110,7 @@ struct LoginView: View {
var publishers: [AnyCancellable] = []

@State private var isShowingWebview = true

// swiftlint:disable function_body_length
init(
onConnected: @escaping (Client) -> Void
) {
Expand Down Expand Up @@ -141,8 +140,8 @@ struct LoginView: View {
"eip155": ProposalNamespace(
chains: [
// swiftlint:disable force_unwrapping
Blockchain("eip155:80001")!, //Polygon Testnet
Blockchain("eip155:421613")! //Arbitrum Testnet
Blockchain("eip155:80001")!, // Polygon Testnet
Blockchain("eip155:421613")! // Arbitrum Testnet
// swiftlint:enable force_unwrapping
],
methods: [
Expand Down

0 comments on commit 5f9628b

Please sign in to comment.