Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Contact Links #49

Merged
merged 1 commit into from
Feb 23, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions PAWS/Contacts/Contacts.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
image: Image(systemName: "safari.fill"), // swiftlint:disable:this accessibility_label_for_image
title: "Website",
action: {
if let url = URL(string: "https://profiles.stanford.edu/intranet/scott-ceresnak?tab=bio") {
if let url = URL(string: "https://profiles.stanford.edu/scott-ceresnak?tab=bio") {

Check warning on line 41 in PAWS/Contacts/Contacts.swift

View check run for this annotation

Codecov / codecov/patch

PAWS/Contacts/Contacts.swift#L41

Added line #L41 was not covered by tests
UIApplication.shared.open(url)
}
}
Expand Down Expand Up @@ -69,7 +69,7 @@
image: Image(systemName: "safari.fill"), // swiftlint:disable:this accessibility_label_for_image
title: "Website",
action: {
if let url = URL(string: "https://profiles.stanford.edu/intranet/scott-ceresnak?tab=bio") {
if let url = URL(string: "https://profiles.stanford.edu/aydin-zahedivash?tab=bio") {

Check warning on line 72 in PAWS/Contacts/Contacts.swift

View check run for this annotation

Codecov / codecov/patch

PAWS/Contacts/Contacts.swift#L72

Added line #L72 was not covered by tests
UIApplication.shared.open(url)
}
}
Expand Down
Loading