Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run swift-format #861

Merged
merged 1 commit into from
Jun 17, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
style: 💄 swift-format
  • Loading branch information
github-actions[bot] committed Jun 17, 2024
commit 651d612cc7ecbf9ea9522883bb5bc72f7d804b9b
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ public struct UsernameSettingLogic {
AlertState.errorLog(message: error.message)
)
return .none

case let .updateTentenResponse(.failure(error as ServerError)):
state.isActivityIndicatorVisible = false
state.destination = .alert(
Expand Down
14 changes: 7 additions & 7 deletions Packages/TenMatch/Sources/MatchedFeature/Matched.swift
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,17 @@ public struct MatchedView: View {
Image(ImageResource.matched)
.resizable()
.aspectRatio(contentMode: .fit)

HStack(spacing: 8) {
Color.blue
.clipShape(Circle())
.frame(width: 128, height: 128)

Color.blue
.clipShape(Circle())
.frame(width: 128, height: 128)
}

Text("You matched with XXXX", bundle: .module)
.foregroundStyle(Color.white)
.font(.system(.headline, design: .rounded, weight: .semibold))
Expand Down Expand Up @@ -69,10 +69,10 @@ public struct MatchedView: View {
.background(
LinearGradient(
colors: [
Color(0xFF30D158),
Color(0xFFFFD60A),
Color(0xFFFF2E00),
Color(0xFF000000)
Color(0xFF30_D158),
Color(0xFFFF_D60A),
Color(0xFFFF_2E00),
Color(0xFF00_0000),
],
startPoint: .top,
endPoint: .bottom
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,8 @@ public struct RecommendationEmptyView: View {
.background(
LinearGradient(
colors: [
Color(0xFFB85BE9),
Color(0xFF000000)
Color(0xFFB8_5BE9),
Color(0xFF00_0000),
],
startPoint: .topTrailing,
endPoint: .bottomLeading
Expand Down