Skip to content

Commit

Permalink
✨[feat]: 컨벤션 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Roy-wonji committed Dec 27, 2023
1 parent 66b01f7 commit 529bf91
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 2 additions & 2 deletions PingPong/Projects/App/Support/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>1.0.2</string>
<string>1.0.3</string>
<key>CFBundleURLTypes</key>
<array>
<dict>
Expand All @@ -32,7 +32,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>24</string>
<string>25</string>
<key>FirebaseAppDelegateProxyEnabled</key>
<true/>
<key>INIntentsSupported</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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()
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@ public struct ChoiceBreadView: View {
selectCatetoryContentView()

Spacer()

confirmButtonView()
.padding(.bottom, 30)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ public struct LoginView: View {
}
}



@ViewBuilder
private func loadingAnimationView() -> some View {

Expand Down

0 comments on commit 529bf91

Please sign in to comment.