mirror of
https://github.com/SideStore/SideStore.git
synced 2026-02-09 06:43:25 +01:00
fix: build errors
This commit is contained in:
@@ -20,7 +20,7 @@ struct AppRowView: View {
|
|||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
HStack(alignment: .center, spacing: 12) {
|
HStack(alignment: .center, spacing: 12) {
|
||||||
AppIconView(iconUrl: storeApp?.iconURL, isSideStore: storeApp?.isSideStore)
|
AppIconView(iconUrl: storeApp?.iconURL, isSideStore: storeApp?.isSideStore ?? false)
|
||||||
|
|
||||||
VStack(alignment: .leading, spacing: 2) {
|
VStack(alignment: .leading, spacing: 2) {
|
||||||
Text(app.name)
|
Text(app.name)
|
||||||
|
|||||||
@@ -29,7 +29,7 @@ struct WriteAppReviewView: View {
|
|||||||
List {
|
List {
|
||||||
// App Information
|
// App Information
|
||||||
HStack {
|
HStack {
|
||||||
AppIconView(iconUrl: storeApp.iconURL, isSideStore: storeApp.isSideStore size: 50)
|
AppIconView(iconUrl: storeApp.iconURL, isSideStore: storeApp.isSideStore, size: 50)
|
||||||
VStack(alignment: .leading) {
|
VStack(alignment: .leading) {
|
||||||
Text(storeApp.name)
|
Text(storeApp.name)
|
||||||
.bold()
|
.bold()
|
||||||
|
|||||||
Reference in New Issue
Block a user