Fix build errors: localization syntax, key paths, and ViewOrderCard widget

This commit is contained in:
2026-02-14 16:26:10 +05:30
parent 097481d26a
commit 4e1a41ebff
25 changed files with 420 additions and 207 deletions

View File

@@ -22,7 +22,7 @@ enum OrderDuration {
}
#events
type Order @table(name: "orders") {
type Order @table(name: "orders", key: ["id"]) {
id: UUID! @default(expr: "uuidV4()")
eventName: String

View File

@@ -10,7 +10,7 @@ enum ShiftStatus {
CANCELED
}
type Shift @table(name: "shifts") {
type Shift @table(name: "shifts", key: ["id"]) {
id: UUID! @default(expr: "uuidV4()")
title: String!