Skip to content

Commit

Permalink
style: resolve another compiler warning
Browse files Browse the repository at this point in the history
  • Loading branch information
blackxfiied committed Oct 30, 2024
1 parent dcf11fe commit 631abe7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Mythic/Views/Unified/Modules/GameImport/LocalImport.swift
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ extension GameImportView {
TextField("Enter Thumbnail URL here... (optional)", text: $imageURLString)
.truncationMode(.tail)
.onChange(of: imageURLString) {
game.imageURL = URL(string: $0)
game.imageURL = URL(string: $1)
}
}

Expand Down

0 comments on commit 631abe7

Please sign in to comment.