Skip to content

Commit 2c1f8c5

Browse files
refactor: consistency for unitialised property
Co-authored-by: Ryan Weaver <[email protected]>
1 parent c27b0c4 commit 2c1f8c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/React/Resources/assets/src/render_controller.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import { createRoot } from 'react-dom/client';
1414
import { Controller } from '@hotwired/stimulus';
1515

1616
export default class extends Controller {
17-
readonly componentValue: string | undefined;
17+
readonly componentValue?: string;
1818
readonly propsValue?: object;
1919

2020
static values = {

0 commit comments

Comments
 (0)