diff --git a/PingPong/Projects/App/Support/Info.plist b/PingPong/Projects/App/Support/Info.plist
index 73c881f3..d8a84693 100644
--- a/PingPong/Projects/App/Support/Info.plist
+++ b/PingPong/Projects/App/Support/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
$(PRODUCT_BUNDLE_PACKAGE_TYPE)
CFBundleShortVersionString
- 1.0.2
+ 1.0.3
CFBundleURLTypes
@@ -32,7 +32,7 @@
CFBundleVersion
- 24
+ 25
FirebaseAppDelegateProxyEnabled
INIntentsSupported
diff --git a/PingPong/Projects/Core/Common/Sources/ViewModel/CommonViewViewModel.swift b/PingPong/Projects/Core/Common/Sources/ViewModel/CommonViewViewModel.swift
index ada5486c..9ac47984 100644
--- a/PingPong/Projects/Core/Common/Sources/ViewModel/CommonViewViewModel.swift
+++ b/PingPong/Projects/Core/Common/Sources/ViewModel/CommonViewViewModel.swift
@@ -185,7 +185,10 @@ public class CommonViewViewModel: ObservableObject {
self.homeBaseModel = list
}
- public func quoteLikeRequest(userID: String, quoteId: Int, completion: @escaping () -> Void ) async {
+ public func quoteLikeRequest(
+ userID: String,
+ quoteId: Int,
+ completion: @escaping () -> Void) async {
if let cancellable = homeLikeCancellable {
cancellable.cancel()
}
diff --git a/PingPong/Projects/Feature/Bake/Sources/UI/HomeBakingView/ChoiceBreadView.swift b/PingPong/Projects/Feature/Bake/Sources/UI/HomeBakingView/ChoiceBreadView.swift
index 73225c0a..731786d4 100644
--- a/PingPong/Projects/Feature/Bake/Sources/UI/HomeBakingView/ChoiceBreadView.swift
+++ b/PingPong/Projects/Feature/Bake/Sources/UI/HomeBakingView/ChoiceBreadView.swift
@@ -37,6 +37,7 @@ public struct ChoiceBreadView: View {
selectCatetoryContentView()
Spacer()
+
confirmButtonView()
.padding(.bottom, 30)
diff --git a/PingPong/Projects/Feature/OnBoarding/Sources/UI/View/MainView/LoginView.swift b/PingPong/Projects/Feature/OnBoarding/Sources/UI/View/MainView/LoginView.swift
index 2a8397b3..d1c532e4 100644
--- a/PingPong/Projects/Feature/OnBoarding/Sources/UI/View/MainView/LoginView.swift
+++ b/PingPong/Projects/Feature/OnBoarding/Sources/UI/View/MainView/LoginView.swift
@@ -107,6 +107,8 @@ public struct LoginView: View {
}
}
+
+
@ViewBuilder
private func loadingAnimationView() -> some View {