Skip to content

Commit 2d1366c

Browse files
author
Georgi2704
committed
Linted
1 parent a53a84f commit 2d1366c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

frontend/packages/pydantic-forms/src/core/hooks/usePydanticFormParser.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ const translateLabel = (
3333
label?: string,
3434
formLabels?: Record<string, string>,
3535
): string | undefined => {
36-
const isString = typeof formLabels?.[propertyId] === 'string'
36+
const isString = typeof formLabels?.[propertyId] === 'string';
3737
return formLabels && formLabels[propertyId] && isString
3838
? formLabels[propertyId].toString()
3939
: label;

0 commit comments

Comments
 (0)