Skip to content
Snippets Groups Projects
Commit 04db4d3a authored by Isaac Evavold's avatar Isaac Evavold
Browse files

remove 5 second delay on note api

parent be7abd95
No related branches found
No related tags found
No related merge requests found
......@@ -10,7 +10,6 @@ import {
map,
filter,
catchError,
delay,
} from 'rxjs/operators';
import { MatSnackBar } from '@angular/material';
......@@ -48,8 +47,6 @@ export class NoteEffects {
write$ = this.actions$.pipe(
ofType<WriteNote>(NoteActionTypes.WriteNote),
delay(5000),
// Get the most recent Degree Planner state object from the store. This is
// used to decide to fire either the `updateNote` API or `createNote` API.
withLatestFrom(this.store$.select(selectors.selectVisibleDegreePlan)),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment