Skip to content

Commit

Permalink
fix color log
Browse files Browse the repository at this point in the history
  • Loading branch information
JJTech0130 committed Mar 27, 2024
1 parent 837de24 commit 9778718
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ValidationRelay.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.2;
MARKETING_VERSION = 1.3;
PRODUCT_BUNDLE_IDENTIFIER = dev.jjtech.experiments.ValidationRelay;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
Expand Down Expand Up @@ -378,7 +378,7 @@
"$(inherited)",
"@executable_path/Frameworks",
);
MARKETING_VERSION = 1.2;
MARKETING_VERSION = 1.3;
PRODUCT_BUNDLE_IDENTIFIER = dev.jjtech.experiments.ValidationRelay;
PRODUCT_NAME = "$(TARGET_NAME)";
SUPPORTED_PLATFORMS = "iphoneos iphonesimulator";
Expand Down
2 changes: 1 addition & 1 deletion ValidationRelay/LogView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ struct LogView: View {
ForEach(logItems.items, id: \.self) { item in
HStack {
Text(item.message)
.foregroundColor(item.isError ? .red : .black)
.foregroundColor(item.isError ? .red : .primary)
Spacer()
Text(item.date, style: .time)
.font(.caption)
Expand Down

0 comments on commit 9778718

Please sign in to comment.