Skip to content
This repository was archived by the owner on Apr 18, 2024. It is now read-only.

Commit 003aeee

Browse files
committed
fix: fix lint
1 parent e7c4386 commit 003aeee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/app/[lang]/chatgpt-startling-by-each-step/[id]/StartlingStepDetail.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ function StartlingStepDetail({
6969
}
7070

7171
// todo: check why regex not working well?
72-
let isMatchAll = step.cachedResponseRegex === ".*" || step.cachedResponseRegex === "(.*?)";
72+
const isMatchAll = step.cachedResponseRegex === ".*" || step.cachedResponseRegex === "(.*?)";
7373
if (isMatchAll) {
7474
onCache(index, assistantResponse);
7575
} else {

0 commit comments

Comments
 (0)