Skip to content

Commit fc6c001

Browse files
authored
Add semicolons
1 parent 35c7e8d commit fc6c001

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/js/packages/@reactpy/client/src/reactpy-vdom.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,9 +136,9 @@ export function createAttributes(
136136
// Add key to attributes
137137
if (model.key) {
138138
if (model.attributes) {
139-
model.attributes['key'] = model.key
139+
model.attributes['key'] = model.key;
140140
} else {
141-
model.attributes = {'key': model.key}
141+
model.attributes = {'key': model.key};
142142
}
143143
}
144144
return Object.fromEntries(

0 commit comments

Comments
 (0)