Skip to content

Commit 2865b58

Browse files
committed
wording
1 parent e3d29d6 commit 2865b58

2 files changed

Lines changed: 1 addition & 2 deletions

File tree

MyApp.Client/src/app/home/getting-started.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ import { ShellCommandComponent } from './shell-command.component';
3838
<shell-command class="mb-2">dotnet tool install -g x</shell-command>
3939
<shell-command class="mb-2">x new {{ template }} {{ project }}</shell-command>
4040
41-
<h4 class="py-6 text-center text-xl">In <b class="text-red-700">/{{project}}.Client</b>, Install npm dependencies</h4>
41+
<h4 class="py-6 text-center text-xl">In <b class="text-red-700">/{{project}}.Client</b></h4>
4242
<shell-command class="mb-2">npm install</shell-command>
4343
4444
<h4 class="py-6 text-center text-xl">In <b class="text-red-700">/{{project}}</b>, Create Database</h4>

MyApp.Client/src/app/todomvc/todos.component.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,6 @@ export class TodoMvcComponent implements OnInit {
7272
toggleCompleted(todo: Todo): void {
7373
this.client.api(new UpdateTodo({ ...todo, isFinished: !todo.isFinished })).subscribe({
7474
next: (updated) => {
75-
console.log('Updated todo:', updated);
7675
const index = this.todos.findIndex(t => t.id === updated.id);
7776
if (index !== -1) {
7877
this.todos[index] = updated;

0 commit comments

Comments
 (0)