Skip to content

Commit

Permalink
removed async language from notifier
Browse files Browse the repository at this point in the history
  • Loading branch information
FireLemons committed Sep 27, 2023
1 parent 183624d commit c6864f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/javascript/src/all_casa_admin/patch_notes.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const AsyncNotifier = require('../notifier')
const Notifier = require('../notifier')
const TypeChecker = require('../type_checker')
const patchNotePath = window.location.pathname
const patchNoteFormBeforeEditData = {}
Expand Down Expand Up @@ -503,7 +503,7 @@ $(() => { // JQuery's callback for the DOM loading

try {
const asyncNotificationsElement = $('#notifications')
pageNotifier = new AsyncNotifier(asyncNotificationsElement)
pageNotifier = new Notifier(asyncNotificationsElement)

$('#new-patch-note button').on('click', patchNoteFunctions.onCreate)
$('#patch-note-list .button-delete').on('click', patchNoteFunctions.onDeletePatchNote)
Expand Down

0 comments on commit c6864f3

Please sign in to comment.