Skip to content

Commit

Permalink
Delint
Browse files Browse the repository at this point in the history
  • Loading branch information
cdupuis committed Jul 11, 2019
1 parent ecf93ee commit 5c8d036
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pack/goal-state/manageGoalSets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ import { pendingGoalSets } from "./cancelGoals";
export const ManageGoalSetsTrigger: TriggeredListener = async li => {
const workspaceIds = li.sdm.configuration.workspaceIds;
if (!!workspaceIds && workspaceIds.length > 0) {
for await (const workspaceId of workspaceIds) {
for (const workspaceId of workspaceIds) {
const ses = namespace.create();
ses.run(async () => {
namespace.set({
Expand Down

0 comments on commit 5c8d036

Please sign in to comment.