Skip to content

Commit

Permalink
Fix time in the details view
Browse files Browse the repository at this point in the history
  • Loading branch information
airy10 committed Feb 27, 2024
1 parent 19220a9 commit ceef0c9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion FindMyDevices/DeviceDetails.swift
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ struct DeviceDetails: View {
if let time = device.timestamp?.formatted(), let lat = device.latitude, let long = device.longitude {
HStack {
Text("Time:").frame(width: 150, alignment: .trailing)
Text("\(lat)")
Text("\(time)")
}
HStack {
Text("Latitude:").frame(width: 150, alignment: .trailing)
Expand Down

0 comments on commit ceef0c9

Please # to comment.