Skip to content

Commit

Permalink
fix npm run check
Browse files Browse the repository at this point in the history
  • Loading branch information
ildyria committed Oct 24, 2024
1 parent dfa15c0 commit 4f7c303
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/js/config/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ export const SelectBuilders = {
return licenseOptions.find((option) => option.value === value) || undefined;
},

buildPhotoLayout(value: string | App.Enum.PhotoLayoutType | undefined): SelectOption<App.Enum.PhotoLayoutType> | undefined {
buildPhotoLayout(value: string | App.Enum.PhotoLayoutType | null): SelectOption<App.Enum.PhotoLayoutType> | undefined {
return photoLayoutOptions.find((option) => option.value === value) || undefined;
},

Expand Down

0 comments on commit 4f7c303

Please sign in to comment.