mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-23 11:18:08 +00:00
* feat(ios): expand iPad layout support Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> * feat: improve iPad and iPhone control surfaces * fix: preserve workboard dispatch compatibility * fix: keep Talk reachable on iPad * fix: add universal iPad app icons * fix: address ready-review iOS feedback * fix: avoid workboard board id shadowing * fix ios sidebar separators --------- Co-authored-by: Solvely-Colin <211764741+Solvely-Colin@users.noreply.github.com> Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com> Co-authored-by: joshavant <830519+joshavant@users.noreply.github.com>
18 lines
323 B
Swift
18 lines
323 B
Swift
import Foundation
|
|
|
|
struct EmptyParams: Encodable {}
|
|
|
|
enum IPadSidebarGatewayError: Error {
|
|
case offline
|
|
case invalidPayload
|
|
|
|
var message: String {
|
|
switch self {
|
|
case .offline:
|
|
"Gateway offline."
|
|
case .invalidPayload:
|
|
"Could not encode request."
|
|
}
|
|
}
|
|
}
|