mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-13 14:23:02 -05:00
fix: run prettier on all file to avoid prettier issue inside PR
This commit is contained in:
@@ -22,12 +22,12 @@ export class NotificationService {
|
||||
.subscribe((notification: Push) => {
|
||||
if (isTeacher(notification)) {
|
||||
this.store.dispatch(
|
||||
teacherActions.addOneTeacher({ teacher: notification })
|
||||
teacherActions.addOneTeacher({ teacher: notification }),
|
||||
);
|
||||
}
|
||||
if (isStudent(notification)) {
|
||||
this.store.dispatch(
|
||||
studentActions.addOneStudent({ student: notification })
|
||||
studentActions.addOneStudent({ student: notification }),
|
||||
);
|
||||
}
|
||||
if (isSchool(notification)) {
|
||||
|
||||
Reference in New Issue
Block a user