Skip to content

Commit

Permalink
[MINI-6213] [iOS Demo app] [Universal bridge] Unable to see alert mes…
Browse files Browse the repository at this point in the history
…sage when info sent to the host tab (#510)

Fixed the issue - Build failing due to compile time errors.
Due to the UniversalBridgeInfoParameters model object parameters being internal.

**LINK**
[MINI-6213](https://jira.rakuten-it.com/jira/browse/MINI-6213)
  • Loading branch information
GondiTilak authored Jul 12, 2023
1 parent 7bb37e3 commit 658daf5
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,9 @@ struct JsonStringInfoParameters: Codable {
}

public struct UniversalBridgeInfoParameters: Codable {
var key: String?
var value: String?
var description: String?
public var key: String?
public var value: String?
public var description: String?
}

struct MiniAppCustomPermissionsRequest: Decodable {
Expand Down

0 comments on commit 658daf5

Please sign in to comment.