Skip to content

Commit

Permalink
fixed label for eua respirators
Browse files Browse the repository at this point in the history
  • Loading branch information
Oliver K. Ernst committed Dec 1, 2020
1 parent 23eb221 commit b2950d6
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions TheMaskedManual/DataStructures/Mask.swift
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ import UIKit

private let n95_surgical_respirator = "N95 Surgical Respirator"
private let n95_respirator = "N95 Respirator"
private let respirator = "Respirator"
private let surgical_mask = "Surgical Mask"

private let fda_approved = "FDA-approved"
Expand Down Expand Up @@ -276,7 +277,7 @@ class Mask : Codable, CustomStringConvertible, Equatable, Hashable {
extra_name: emergency,
extra_name_short: emergency_short,
help_extra: "This respirator is authorized for emergency use by the FDA during COVID-19.",
type: n95_respirator,
type: respirator,
extra_image_checkmark: image_ok,
fda_image_checkmark: image_not_ok,
niosh_image_checkmark: image_not_ok
Expand All @@ -297,7 +298,7 @@ class Mask : Codable, CustomStringConvertible, Equatable, Hashable {
extra_name: revoked,
extra_name_short: revoked_short,
help_extra: "This respirator has been revoked from the list of COVID-19 emergency approved respirators by the FDA.",
type: n95_respirator,
type: respirator,
extra_image_checkmark: image_not_ok,
fda_image_checkmark: image_not_ok,
niosh_image_checkmark: image_not_ok
Expand Down

0 comments on commit b2950d6

Please sign in to comment.