notifications/sagas: fix rename in comment

This was missed when actions were refactored to remove ActionType enums.
This commit is contained in:
David Lechner
2022-03-05 12:39:30 -06:00
parent 569217d5dc
commit d767ca0784
+2 -2
View File
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
// Copyright (c) 2020-2022 The Pybricks Authors
// Copyright (c) 2020 - 2022 The Pybricks Authors
// Saga for managing notifications (toasts)
@@ -363,7 +363,7 @@ function* showServiceWorkerUpdate(
function* showNoUpdateInfo(action: ReturnType<typeof didCheckForUpdate>): Generator {
if (action.updateFound) {
// this will be handled by ServiceWorkerActionType.DidUpdate action
// this will be handled by didUpdate action
return;
}