Skip to content

Commit

Permalink
små justeringar
Browse files Browse the repository at this point in the history
  • Loading branch information
dsnallfot committed Apr 5, 2024
1 parent a15eab0 commit 03d3944
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion LoopFollow/ViewControllers/BolusViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ class BolusViewController: UIViewController, UITextFieldDelegate, TwilioRequesta
switch result {
case .success:
// Show success alert
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades!", preferredStyle: .alert)
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades", preferredStyle: .alert)
alertController.addAction(UIAlertAction(title: "OK", style: .default, handler: { _ in
// Dismiss the current view controller
self.dismiss(animated: true, completion: nil)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ class CustomActionViewController: UIViewController, UIPickerViewDataSource, UIPi
switch result {
case .success:
// Show success alert
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades!", preferredStyle: .alert)
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades", preferredStyle: .alert)
alertController.addAction(UIAlertAction(title: "OK", style: .default, handler: { _ in
// Dismiss the current view controller
self.dismiss(animated: true, completion: nil)
Expand Down
2 changes: 1 addition & 1 deletion LoopFollow/ViewControllers/MealViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,7 @@ class MealViewController: UIViewController, UITextFieldDelegate, TwilioRequestab
switch result {
case .success:
// Show success alert
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades!", preferredStyle: .alert)
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades", preferredStyle: .alert)
alertController.addAction(UIAlertAction(title: "OK", style: .default, handler: { _ in
// Dismiss the current view controller
self.dismiss(animated: true, completion: nil)
Expand Down
2 changes: 1 addition & 1 deletion LoopFollow/ViewControllers/OverrideViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ class OverrideViewController: UIViewController, UIPickerViewDataSource, UIPicker
switch result {
case .success:
// Show success alert
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades!", preferredStyle: .alert)
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades", preferredStyle: .alert)
alertController.addAction(UIAlertAction(title: "OK", style: .default, handler: { _ in
// Dismiss the current view controller
self.dismiss(animated: true, completion: nil)
Expand Down
2 changes: 1 addition & 1 deletion LoopFollow/ViewControllers/TempTargetviewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ class TempTargetViewController: UIViewController, UIPickerViewDataSource, UIPick
switch result {
case .success:
// Show success alert
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades!", preferredStyle: .alert)
let alertController = UIAlertController(title: "Lyckades!", message: "Meddelandet levererades", preferredStyle: .alert)
alertController.addAction(UIAlertAction(title: "OK", style: .default, handler: { _ in
// Dismiss the current view controller
self.dismiss(animated: true, completion: nil)
Expand Down

0 comments on commit 03d3944

Please sign in to comment.