diff --git a/Sources/AllInApp/AllIn/Views/ProfileView.swift b/Sources/AllInApp/AllIn/Views/ProfileView.swift
index 6fb658f..48edfec 100644
--- a/Sources/AllInApp/AllIn/Views/ProfileView.swift
+++ b/Sources/AllInApp/AllIn/Views/ProfileView.swift
@@ -87,8 +87,10 @@ struct ProfileView: View {
                                 Spacer()
                                 
                                 Image(systemName: "chevron.right")
+                                    .resizable()
+                                    .frame(width: 8, height: 12)
                                     .foregroundColor(parameters[index].itemColor)
-                                    .padding(.trailing, 8)
+                                    .padding(.trailing, 14)
                             }
                             .padding(.vertical, 15)
                             .background(parameters[index].backgroundColor)
diff --git a/Sources/Api/Sources/Api/BetApiManager.swift b/Sources/Api/Sources/Api/BetApiManager.swift
index e094e42..d0e1f0e 100644
--- a/Sources/Api/Sources/Api/BetApiManager.swift
+++ b/Sources/Api/Sources/Api/BetApiManager.swift
@@ -20,7 +20,7 @@ public struct BetApiManager: BetDataManager {
         let url = URL(string: allInApi + "bets/gets")!
 
         var request = URLRequest(url: url)
-        request.httpMethod = "GET"
+        request.httpMethod = "POST"
         request.setValue("application/json", forHTTPHeaderField: "Content-Type")
         request.setValue("Bearer \(token)", forHTTPHeaderField: "Authorization")