Official URL migration preserves sessions, shortcuts prefs, and last clock-in client; auth screens match web with legal links; time clock and invoice editor/send flows are updated for the new domain and UI patterns. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
187 B
Swift
9 lines
187 B
Swift
import UIKit
|
|
|
|
enum BeenVoiceIntentHelpers {
|
|
@MainActor
|
|
static func openDeepLink(_ url: URL) {
|
|
UIApplication.shared.open(url, options: [:], completionHandler: nil)
|
|
}
|
|
}
|