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

Quick UI Fixes #580

Merged
merged 3 commits into from
Feb 21, 2024
Merged

Quick UI Fixes #580

merged 3 commits into from
Feb 21, 2024

Conversation

s0phialiu
Copy link
Contributor

@s0phialiu s0phialiu commented Feb 21, 2024

Description

  • Fixed legend button touch not being responsive at times.
  • Altered view on schedule view controller to increase margin between segmented view controller and table view.
  • Bump app version to 2024.2.1.
  • Fix part where "Quest Complete" should actually be "HackIllinois Ends".
  • Fixed issue where certain attendees cannot sign in by making the email field optional.

@@ -21,7 +21,7 @@ public struct Attendee: Codable, APIReturnable {
public let id: String
public let firstName: String?
public let lastName: String?
public let email: String
public let email: String? // Email should be an optional field because not every GH account has their email set to public
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Technically this email should be required since Attendees provide these at Registration

@@ -15,7 +15,7 @@ import Foundation

public struct User: Codable, APIReturnable {
public let userId: String
public let email: String
public let email: String? // Email should be an optional field because not every GH account has their email set to public
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is the one that should be optional, yes!

Make email required
@s0phialiu s0phialiu merged commit 07ccc47 into dev Feb 21, 2024
2 checks passed
@s0phialiu s0phialiu deleted the sophia/more-quick-ui-updates branch February 21, 2024 07:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants