Hi,
I'm unable to properly fill out and submit the banking form for a Canadian bank account. The form doesn't properly validate my transit number, I can't find my bank in the manual lookup, and despite the transit number being incorrect I can still submit the form but it just spins indefinitely. The fonts also seem to be broken in the form dropdowns, so it feels like there's something not quite right with the form in general right now. Can someone please advise me on how to submit my banking information?
Thank you.
Post
Replies
Boosts
Views
Activity
Hi,
All of my TestFlight builds expired themselves and I can't submit any new builds for external testing. The general error message I see is "There was an error processing your request. Please try again later." and looking at the console I see a more specific error "API Response Error: TF_BETA_APP_REVIEW_RESPONSE".
I've sent a couple of emails to support but I haven't heard anything back yet.
What's going on with App Store Connect these days? It's so unreliable.
The following:
tabBarController.tabs = [
UITab(title: "First",
image: UIImage(...),
identifier: "First Tab") { _ in
myViewController()
}
Works as expected. Tap on a a tab or sidebar item, and myViewController appears.
However, the following:
let collectionsGroup = UITabGroup(
title: "Lists",
image: nil,
identifier: "Tabs.CollectionsGroup",
children: [
UITab(title: "First", image: nil, identifier: "First Tab") { _ in
myViewController()
}
]) { _ in
fallbackViewController()
}
Does not work as expected. Tapping on any tab in the sidebar always displays fallbackViewController, instead of myViewController or any other specified view controllers in the given tab.
Am I doing something wrong, or is this a bug with the current betas?