Skip to content

Commit 4d573cd

Browse files
committed
Fix linter warning (#556)
1 parent 77da344 commit 4d573cd

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

frontend/src/components/Brokers/Broker/Configs/TableComponents/InputCell/InputCellViewMode.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,9 @@ const InputCellViewMode: FC<InputCellViewModeProps> = ({
3232

3333
return (
3434
<S.ValueWrapper>
35-
<S.Value $isDynamic={isDynamic} title={title}>{displayValue}</S.Value>
35+
<S.Value $isDynamic={isDynamic} title={title}>
36+
{displayValue}
37+
</S.Value>
3638
<Tooltip
3739
value={
3840
<Button

0 commit comments

Comments
 (0)