Skip to content

Commit eb9b58d

Browse files
committed
updates some error -remonder.ts
1 parent d449321 commit eb9b58d

File tree

1 file changed

+0
-1
lines changed
  • Section10-Node-and-Express-With-TypeScript/reminders-api/models

1 file changed

+0
-1
lines changed

Section10-Node-and-Express-With-TypeScript/reminders-api/models/reminder.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ export default class Reminder {
22
id: number;
33
isComplete: boolean;
44

5-
65
constructor(public title: string) {
76
this.id = Date.now();
87
this.isComplete = false;

0 commit comments

Comments
 (0)