From 1893bd9acf89c776925fb9a7ba9a7bbfa6992557 Mon Sep 17 00:00:00 2001 From: Aseer KT <98734275+aseer-ws@users.noreply.github.com> Date: Tue, 15 Feb 2022 18:30:04 +0530 Subject: [PATCH] fix: Generator function syntax in saga.js --- generators/container/saga.js.hbs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/generators/container/saga.js.hbs b/generators/container/saga.js.hbs index 2a23cb8..904dee7 100644 --- a/generators/container/saga.js.hbs +++ b/generators/container/saga.js.hbs @@ -4,7 +4,7 @@ import { {{ camelCase name}}Types } from './reducer'; // Individual exports for testing const { DEFAULT_ACTION } = {{ camelCase name }}Types; -export function *defaultFunction (/* action */) { +export function* defaultFunction (/* action */) { // console.log('Do something here') };