- removed toast msg for guest signup.

- fixed the product listing issue inside shop products
This commit is contained in:
2024-10-17 19:25:38 +05:30
parent 4ef01bafd7
commit 821988ff41
9 changed files with 89 additions and 51 deletions

View File

@@ -93,7 +93,8 @@ class GamesWebViewVC: UIViewController, WKNavigationDelegate,UIGestureRecognizer
let sb = UIStoryboard(name: K.StoryBoard.customAlerts, bundle: nil)
let vcPush = sb.instantiateViewController(withIdentifier: K.StoryBoardID.CustomAlerts.yesNoAlertVC) as! YesNoAlertVC
vcPush.mainTitleText = "Warning"
vcPush.contentLabel = "Clicking \"OK\" will exit you from the game. Are you sure you want to proceed?"
// vcPush.contentLabel = "Clicking \"OK\" will exit you from the game. Are you sure you want to proceed?"
vcPush.contentLabel = "Are you sure you want to exit the game?"
vcPush.yesBtnText = "OK"
vcPush.noBtnText = "Cancel"
vcPush.onDoneBlock = { [weak self] mode in