Fixed usage of deprecated Field interface

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
Alexander Cerutti
2025-09-25 18:20:16 +02:00
committed by GitHub
parent 9593f7d782
commit 9fe0b5facf

View File

@@ -63,7 +63,7 @@ export interface PassFieldContentWithRow extends PassFieldContent {
*/
export type FieldWithRow = PassFieldContentWithRow;
export const PassFieldContent = Joi.object<Field>().keys({
export const PassFieldContent = Joi.object<PassFieldContent>().keys({
attributedValue: Joi.alternatives(
Joi.string().allow(""),
Joi.number(),