Fix build errors.

This commit is contained in:
Brent Simmons
2024-10-27 12:01:52 -07:00
parent 5d5f31f045
commit c76c535eb3
2 changed files with 2 additions and 2 deletions

View File

@@ -195,7 +195,7 @@ class AccountsReaderAPIWindowController: NSWindowController {
@IBAction func createAccountWithProvider(_ sender: Any) {
guard let createAccountURL = accountType.createAccountURL else {
guard let createAccountURL = accountType?.createAccountURL else {
return
}

View File

@@ -266,7 +266,7 @@ class ReaderAPIAccountViewController: UITableViewController {
@IBAction func signUpWithProvider(_ sender: Any) {
guard let createAccountURL = accountType.createAccountURL else {
guard let createAccountURL = accountType?.createAccountURL else {
return
}