Skip to content

Commit

Permalink
fix: typo issue Variable value typo #120
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Nov 17, 2022
1 parent 758aa7a commit e7f44b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ public enum BundleStatus {
ERROR("error"),
PENDING("pending"),
DELETED("deleted"),
DOWNLOADING("donwloading");
DOWNLOADING("downloading");

public final String label;

Expand Down
2 changes: 1 addition & 1 deletion ios/Plugin/BundleStatus.swift
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ enum BundleStatus: LocalizedString, Decodable, Encodable {
case ERROR = "error"
case PENDING = "pending"
case DELETED = "deleted"
case DOWNLOADING = "donwloading"
case DOWNLOADING = "downloading"

var localizedString: String {
return self.rawValue.v
Expand Down

0 comments on commit e7f44b7

Please sign in to comment.