Adding some size fixing (#709)

This commit is contained in:
Max Goedjen
2025-09-14 14:48:22 -07:00
committed by GitHub
parent d7f8d5e56b
commit e8cdcdfb7f
5 changed files with 8 additions and 3 deletions

View File

@@ -85,7 +85,9 @@ struct SetupView: View {
integrations = true
}, content: {
IntegrationsView()
.frame(minWidth: 500, minHeight: 400)
})
.fixedSize(horizontal: false, vertical: true)
}
}

View File

@@ -32,6 +32,7 @@ struct ToolConfigurationView: View {
selectedSecret = created
}
}
.fixedSize()
}
}
}