From 4f7c303743ad9e22a64d8a4d74ecb976de8496e4 Mon Sep 17 00:00:00 2001 From: ildyria Date: Thu, 24 Oct 2024 21:56:42 +0200 Subject: [PATCH] fix npm run check --- resources/js/config/constants.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/js/config/constants.ts b/resources/js/config/constants.ts index 3786525a288..5993cfcbc7e 100644 --- a/resources/js/config/constants.ts +++ b/resources/js/config/constants.ts @@ -125,7 +125,7 @@ export const SelectBuilders = { return licenseOptions.find((option) => option.value === value) || undefined; }, - buildPhotoLayout(value: string | App.Enum.PhotoLayoutType | undefined): SelectOption | undefined { + buildPhotoLayout(value: string | App.Enum.PhotoLayoutType | null): SelectOption | undefined { return photoLayoutOptions.find((option) => option.value === value) || undefined; },