File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
apps/events/src/components Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ export const Todos2 = () => {
129129 < div key = { todo . id } className = "flex flex-row items-center gap-2" >
130130 < h2 > { todo . name } </ h2 >
131131 < div className = "text-xs" > { todo . id } </ div >
132- < input type = "checkbox" defaultChecked = { todo . checked } />
132+ < input type = "checkbox" checked = { todo . checked } />
133133 < Button
134134 onClick = { async ( ) => {
135135 const ops = await _generateDeleteOps ( { id : todo . id , space } ) ;
@@ -151,7 +151,7 @@ export const Todos2 = () => {
151151 < div key = { todo . id } className = "flex flex-row items-center gap-2" >
152152 < h2 > { todo . name } </ h2 >
153153 < div className = "text-xs" > { todo . id } </ div >
154- < input type = "checkbox" defaultChecked = { todo . checked } />
154+ < input type = "checkbox" checked = { todo . checked } />
155155 < Button
156156 onClick = { async ( ) => {
157157 const ops = await _generateDeleteOps ( { id : todo . id , space } ) ;
You can’t perform that action at this time.
0 commit comments