feat: Fixes release build failures and get's release dockerfile working.

This commit is contained in:
2025-01-24 16:47:00 -05:00
parent 90c6058d56
commit 978ce8c74f
38 changed files with 233 additions and 217 deletions

View File

@@ -58,7 +58,7 @@ struct UserForm: HTML, Sendable {
}
}
enum Context: Equatable {
enum Context: Equatable, Sendable {
case create
case login(next: String?)

View File

@@ -4,7 +4,7 @@ import Elementary
import ElementaryHTMX
import SharedModels
struct UserTable: HTML {
struct UserTable: HTML, Sendable {
let users: [User]
@@ -32,7 +32,7 @@ struct UserTable: HTML {
}
}
struct Row: HTML {
struct Row: HTML, Sendable {
let user: User
init(user: User) {