diff --git a/macos/Sources/Features/About/About.xib b/macos/Sources/Features/About/About.xib index fe339493a..e884beff1 100644 --- a/macos/Sources/Features/About/About.xib +++ b/macos/Sources/Features/About/About.xib @@ -1,8 +1,8 @@ - + - + diff --git a/macos/Sources/Features/About/AboutView.swift b/macos/Sources/Features/About/AboutView.swift index 2cec3ab2e..1ce507de1 100644 --- a/macos/Sources/Features/About/AboutView.swift +++ b/macos/Sources/Features/About/AboutView.swift @@ -22,6 +22,12 @@ struct AboutView: View { .font(.body) .textSelection(.enabled) } + + if let build = self.build { + Text("Build: \(build)") + .font(.body) + .textSelection(.enabled) + } } .frame(minWidth: 300) .padding()