@handsupmin/gc-tree 0.7.5 → 0.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/hook.js +1 -1
- package/package.json +1 -1
package/dist/src/hook.js
CHANGED
|
@@ -115,7 +115,7 @@ export async function dispatchGcTreeHook({ event, home, payload, }) {
|
|
|
115
115
|
},
|
|
116
116
|
};
|
|
117
117
|
}
|
|
118
|
-
const prompt = normalizeText(payload.user_prompt || '');
|
|
118
|
+
const prompt = normalizeText(payload.user_prompt || payload.prompt || '');
|
|
119
119
|
if (!prompt)
|
|
120
120
|
return null;
|
|
121
121
|
const branchStatus = await statusForBranch(home, gcBranch);
|